summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpam@chromium.org <pam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-10 18:38:18 +0000
committerpam@chromium.org <pam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-10 18:38:18 +0000
commitbf41de9e4bd0a3cf19da546ae05ca079031c700a (patch)
treef7a72dd9a8dfeced391ae05404dc9aa5a26b4396
parent13619fbbb3bef81f1373e92a45878cf776460b03 (diff)
downloadchromium_src-bf41de9e4bd0a3cf19da546ae05ca079031c700a.zip
chromium_src-bf41de9e4bd0a3cf19da546ae05ca079031c700a.tar.gz
chromium_src-bf41de9e4bd0a3cf19da546ae05ca079031c700a.tar.bz2
New baselines for new tests with the 42324:42364 merge.
fixed-positioning-scrollbar-bug: minor differences in metrics function-apply-aliased-expected: different JS error messages BUG=9962 TEST=covered by layout tests Review URL: http://codereview.chromium.org/66042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13521 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.checksum1
-rw-r--r--webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.pngbin0 -> 3798 bytes
-rw-r--r--webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.txt16
-rw-r--r--webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/js/function-apply-aliased-expected.txt31
4 files changed, 48 insertions, 0 deletions
diff --git a/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.checksum b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.checksum
new file mode 100644
index 0000000..e74c777
--- /dev/null
+++ b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.checksum
@@ -0,0 +1 @@
+1cf52f4dc451ab9b7b7026acde2007a3 \ No newline at end of file
diff --git a/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.png b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.png
new file mode 100644
index 0000000..b717e42
--- /dev/null
+++ b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.png
Binary files differ
diff --git a/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.txt b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.txt
new file mode 100644
index 0000000..0732aab
--- /dev/null
+++ b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.txt
@@ -0,0 +1,16 @@
+layer at (0,0) size 785x2028
+ RenderView at (0,0) size 785x600
+layer at (0,0) size 785x600
+ RenderBlock {HTML} at (0,0) size 785x600
+ RenderBody {BODY} at (8,8) size 769x584
+ RenderText {#text} at (0,0) size 350x19
+ text run at (0,0) width 350: "The purple box should stick to the bottom of the window. "
+ RenderText {#text} at (0,0) size 0x0
+ RenderText {#text} at (0,0) size 0x0
+ RenderText {#text} at (0,0) size 0x0
+ RenderText {#text} at (0,0) size 0x0
+ RenderText {#text} at (0,0) size 0x0
+ RenderText {#text} at (0,0) size 0x0
+ RenderText {#text} at (0,0) size 0x0
+layer at (8,500) size 100x100
+ RenderBlock (positioned) {DIV} at (8,500) size 100x100 [bgcolor=#800080]
diff --git a/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/js/function-apply-aliased-expected.txt b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/js/function-apply-aliased-expected.txt
new file mode 100644
index 0000000..1927c00
--- /dev/null
+++ b/webkit/data/layout_tests/platform/chromium-win/LayoutTests/fast/js/function-apply-aliased-expected.txt
@@ -0,0 +1,31 @@
+This tests that we can correctly call Function.prototype.apply
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS myObject.apply() is [myObject, "myObject.apply"]
+PASS forwarder(myObject) is [myObject, "myObject.apply"]
+PASS myFunction('arg1') is [this, "myFunction", "arg1"]
+PASS forwarder(myFunction, null, ['arg1']) is [this, "myFunction", "arg1"]
+PASS myFunction.apply(myObject, ['arg1']) is [myObject, "myFunction", "arg1"]
+PASS myFunction.apply(myObject, arg1Array) is [myObject, "myFunction", "arg1"]
+PASS forwarder(myFunction, myObject, arg1Array) is [myObject, "myFunction", "arg1"]
+PASS myFunction.apply() is [this, "myFunction", undefined]
+PASS myFunction.apply(null) is [this, "myFunction", undefined]
+PASS myFunction.apply(undefined) is [this, "myFunction", undefined]
+PASS myFunction.aliasedApply(myObject, ['arg1']) is [myObject, "myFunction", "arg1"]
+PASS myFunction.aliasedApply() is [this, "myFunction", undefined]
+PASS myFunction.aliasedApply(null) is [this, "myFunction", undefined]
+PASS myFunction.aliasedApply(undefined) is [this, "myFunction", undefined]
+PASS myFunctionWithApply.apply(myObject, ['arg1']) is [myFunctionWithApply, "myFunctionWithApply.apply", myObject]
+PASS myFunctionWithApply.aliasedApply(myObject, ['arg1']) is [myObject, "myFunctionWithApply", "arg1"]
+PASS myFunctionWithApply.apply(myObject, arg1Array) is [myFunctionWithApply, "myFunctionWithApply.apply", myObject]
+PASS forwarder(myFunctionWithApply, myObject, arg1Array) is [myFunctionWithApply, "myFunctionWithApply.apply", myObject]
+PASS myFunctionWithApply.aliasedApply(myObject, arg1Array) is [myObject, "myFunctionWithApply", "arg1"]
+PASS myFunction.apply(null, new Array(5000000)) threw exception RangeError: Function.prototype.apply cannot support 5000000 arguments.
+PASS myFunction.apply(null, new Array(1 << 30)) threw exception RangeError: Function.prototype.apply cannot support 1073741824 arguments.
+PASS recurseArguments.apply(null, new Array(50000)) threw exception RangeError: Function.prototype.apply cannot support 50000 arguments.
+PASS successfullyParsed is true
+
+TEST COMPLETE
+