diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-20 00:27:40 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-20 00:27:40 +0000 |
commit | 6995f1dfc7d50b1296221b3875d79d31a978eb6a (patch) | |
tree | 775dd6460bb036d3d024f71683c1c97cdcc5cafa /webkit/port/bindings | |
parent | 2d26db66a90ca0adbf9717e0eb1b91369f6e6e2c (diff) | |
download | chromium_src-6995f1dfc7d50b1296221b3875d79d31a978eb6a.zip chromium_src-6995f1dfc7d50b1296221b3875d79d31a978eb6a.tar.gz chromium_src-6995f1dfc7d50b1296221b3875d79d31a978eb6a.tar.bz2 |
Fixed two layout tests.
* get-set-properties: updated baseline that had been outdated by webkit change r39097
* document-open-return-value: changed document.open() to return this rather than null as per https://bugs.webkit.org/show_bug.cgi?id=14968
Review URL: http://codereview.chromium.org/14877
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7333 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port/bindings')
-rw-r--r-- | webkit/port/bindings/v8/v8_custom.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/port/bindings/v8/v8_custom.cpp b/webkit/port/bindings/v8/v8_custom.cpp index e4ae777..c25c119 100644 --- a/webkit/port/bindings/v8/v8_custom.cpp +++ b/webkit/port/bindings/v8/v8_custom.cpp @@ -2741,7 +2741,7 @@ CALLBACK_FUNC_DECL(HTMLDocumentOpen) { Frame* frame = V8Proxy::retrieveActiveFrame(); imp->open(frame->document()); - return v8::Undefined(); + return args.This(); } // Document -------------------------------------------------------------------- |