diff options
author | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-12 22:55:04 +0000 |
---|---|---|
committer | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-12 22:55:04 +0000 |
commit | 7e3c47c12a70daaddbfd12f39412ad1436016e06 (patch) | |
tree | 7890b435e6deeda10504ee0b6d9a00736d363b74 /webkit/data | |
parent | 1d9489eac7d6f0807524d3d5de12d210e9e29594 (diff) | |
download | chromium_src-7e3c47c12a70daaddbfd12f39412ad1436016e06.zip chromium_src-7e3c47c12a70daaddbfd12f39412ad1436016e06.tar.gz chromium_src-7e3c47c12a70daaddbfd12f39412ad1436016e06.tar.bz2 |
WebKit update [43553:43587].
* LayoutTests/fast/js/instance-of-immediates.html
Test was changed upstream in <http://trac.webkit.org/changeset/43560>, rebaselined to match those changes.
BUG=0
TBR=dglazkov
Review URL: http://codereview.chromium.org/113308
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15912 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/data')
2 files changed, 6 insertions, 0 deletions
diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/fast/js/instance-of-immediates-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/fast/js/instance-of-immediates-expected.txt index ce2b8ff..2c8bf72 100644 --- a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/fast/js/instance-of-immediates-expected.txt +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/fast/js/instance-of-immediates-expected.txt @@ -6,6 +6,9 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE PASS (1 instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got 1.
PASS ({} instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<an Object>.
PASS (obj instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<a Constructor>.
+PASS (1 instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got 1.
+PASS ({} instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<an Object>.
+PASS (obj instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<a Constructor>.
PASS (1 instanceof Constructor) is false
PASS ({} instanceof Constructor) is false
PASS (obj instanceof Constructor) is true
diff --git a/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/js/instance-of-immediates-expected.txt b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/js/instance-of-immediates-expected.txt index ce2b8ff..2c8bf72 100644 --- a/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/js/instance-of-immediates-expected.txt +++ b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/js/instance-of-immediates-expected.txt @@ -6,6 +6,9 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE PASS (1 instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got 1.
PASS ({} instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<an Object>.
PASS (obj instanceof 1) threw exception TypeError: Expecting a function in instanceof check, but got #<a Constructor>.
+PASS (1 instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got 1.
+PASS ({} instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<an Object>.
+PASS (obj instanceof {}) threw exception TypeError: Expecting a function in instanceof check, but got #<a Constructor>.
PASS (1 instanceof Constructor) is false
PASS ({} instanceof Constructor) is false
PASS (obj instanceof Constructor) is true
|