Bug 37263 - [v8] SerializedScriptValue fails to deserialize an Object that has prototype with properties
Summary: [v8] SerializedScriptValue fails to deserialize an Object that has prototype ...
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebCore JavaScript (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC OS X 10.5
: P2 Normal
Assignee: Yury Semikhatsky
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-04-08 05:11 PDT by Yury Semikhatsky
Modified: 2010-04-08 08:10 PDT (History)
3 users (show)

See Also:


Attachments
proposed fix (1.21 KB, patch)
2010-04-08 05:15 PDT, Yury Semikhatsky
no flags Details | Formatted Diff | Diff
patch (4.31 KB, patch)
2010-04-08 06:37 PDT, Yury Semikhatsky
pfeldman: review+
Details | Formatted Diff | Diff
patch (4.23 KB, patch)
2010-04-08 06:44 PDT, Yury Semikhatsky
pfeldman: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Yury Semikhatsky 2010-04-08 05:11:42 PDT
SerializedScriptValue fails to deserialize an Object that has prototype with properties. Try to serialize and the deserialize object with the following constructor:

InjectedScript.CallFrameProxy = function(id)
{
    this.id = id;
}

InjectedScript.CallFrameProxy.prototype = {
    _wrapScopeChain: function(callFrame)
    {}
}
Comment 1 Yury Semikhatsky 2010-04-08 05:15:31 PDT
Created attachment 52853 [details]
proposed fix
Comment 2 Yury Semikhatsky 2010-04-08 06:37:59 PDT
Created attachment 52857 [details]
patch
Comment 3 Yury Semikhatsky 2010-04-08 06:44:45 PDT
Created attachment 52859 [details]
patch

Moved    ++m_numSerializedProperties; after property names serialization according to vitalyr feedback.
Comment 4 Yury Semikhatsky 2010-04-08 07:28:49 PDT
Committing to http://svn.webkit.org/repository/webkit/trunk ...
	M	LayoutTests/ChangeLog
	M	LayoutTests/fast/dom/Window/window-postmessage-clone-expected.txt
	M	LayoutTests/fast/dom/Window/window-postmessage-clone.html
	M	WebCore/ChangeLog
	M	WebCore/bindings/v8/SerializedScriptValue.cpp
Committed r57276
Comment 5 Vitaly Repeshko 2010-04-08 08:10:45 PDT
(In reply to comment #4)
> Committing to http://svn.webkit.org/repository/webkit/trunk ...
>     M    LayoutTests/ChangeLog
>     M    LayoutTests/fast/dom/Window/window-postmessage-clone-expected.txt
>     M    LayoutTests/fast/dom/Window/window-postmessage-clone.html
>     M    WebCore/ChangeLog
>     M    WebCore/bindings/v8/SerializedScriptValue.cpp
> Committed r57276

Thanks a lot for fixing this!