Title: [185798] trunk/LayoutTests
- Revision
- 185798
- Author
- [email protected]
- Date
- 2015-06-20 09:48:11 -0700 (Sat, 20 Jun 2015)
Log Message
REGRESSION (r185779): fast/canvas/{canvas-toDataURL-crash,pattern-too-large-to-create}.html are broken
This layout test started failing after the fix for:
Extremely large canvas crashes on pre-El Capitan machines
https://bugs.webkit.org/show_bug.cgi?id=146169
<rdar://problem/21410046>
Different limits require different test results for each
platform. This is the same fix for these tests as r185793.
* fast/canvas/canvas-toDataURL-crash-expected.txt: Update.
* fast/canvas/pattern-too-large-to-create-expected.txt: Update.
- Set limit to 268435456.
* platform/ios-simulator/fast/canvas/canvas-toDataURL-crash-expected.txt: Copied from LayoutTests/fast/canvas/canvas-toDataURL-crash-expected.txt.
* platform/ios-simulator/fast/canvas/pattern-too-large-to-create-expected.txt: Copied from LayoutTests/fast/canvas/pattern-too-large-to-create-expected.txt.
- Set limit to 16777216.
* platform/mac-yosemite/fast/canvas/canvas-toDataURL-crash-expected.txt: Copied from LayoutTests/fast/canvas/canvas-toDataURL-crash-expected.txt.
* platform/mac-yosemite/fast/canvas/pattern-too-large-to-create-expected.txt: Copied from LayoutTests/fast/canvas/pattern-too-large-to-create-expected.txt.
- Set limit to 67108864.
Modified Paths
Added Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (185797 => 185798)
--- trunk/LayoutTests/ChangeLog 2015-06-20 16:30:26 UTC (rev 185797)
+++ trunk/LayoutTests/ChangeLog 2015-06-20 16:48:11 UTC (rev 185798)
@@ -1,5 +1,30 @@
2015-06-20 David Kilzer <[email protected]>
+ REGRESSION (r185779): fast/canvas/{canvas-toDataURL-crash,pattern-too-large-to-create}.html are broken
+
+ This layout test started failing after the fix for:
+
+ Extremely large canvas crashes on pre-El Capitan machines
+ https://bugs.webkit.org/show_bug.cgi?id=146169
+ <rdar://problem/21410046>
+
+ Different limits require different test results for each
+ platform. This is the same fix for these tests as r185793.
+
+ * fast/canvas/canvas-toDataURL-crash-expected.txt: Update.
+ * fast/canvas/pattern-too-large-to-create-expected.txt: Update.
+ - Set limit to 268435456.
+
+ * platform/ios-simulator/fast/canvas/canvas-toDataURL-crash-expected.txt: Copied from LayoutTests/fast/canvas/canvas-toDataURL-crash-expected.txt.
+ * platform/ios-simulator/fast/canvas/pattern-too-large-to-create-expected.txt: Copied from LayoutTests/fast/canvas/pattern-too-large-to-create-expected.txt.
+ - Set limit to 16777216.
+
+ * platform/mac-yosemite/fast/canvas/canvas-toDataURL-crash-expected.txt: Copied from LayoutTests/fast/canvas/canvas-toDataURL-crash-expected.txt.
+ * platform/mac-yosemite/fast/canvas/pattern-too-large-to-create-expected.txt: Copied from LayoutTests/fast/canvas/pattern-too-large-to-create-expected.txt.
+ - Set limit to 67108864.
+
+2015-06-20 David Kilzer <[email protected]>
+
fast/canvas/webgl/tex-image-and-uniform-binding-bugs.html is slow on Mavericks WK1 Debug builds
The Flakiness Dashboard says that this test times out, but only
Modified: trunk/LayoutTests/fast/canvas/canvas-toDataURL-crash-expected.txt (185797 => 185798)
--- trunk/LayoutTests/fast/canvas/canvas-toDataURL-crash-expected.txt 2015-06-20 16:30:26 UTC (rev 185797)
+++ trunk/LayoutTests/fast/canvas/canvas-toDataURL-crash-expected.txt 2015-06-20 16:48:11 UTC (rev 185798)
@@ -1,4 +1,4 @@
-CONSOLE MESSAGE: line 6: Canvas area exceeds the maximum limit (width * height > 67108864).
+CONSOLE MESSAGE: line 6: Canvas area exceeds the maximum limit (width * height > 268435456).
PASS
Calling toDataURL() on a huge canvas shouldn't crash. If the text above is "PASS", the test passed.
Modified: trunk/LayoutTests/fast/canvas/pattern-too-large-to-create-expected.txt (185797 => 185798)
--- trunk/LayoutTests/fast/canvas/pattern-too-large-to-create-expected.txt 2015-06-20 16:30:26 UTC (rev 185797)
+++ trunk/LayoutTests/fast/canvas/pattern-too-large-to-create-expected.txt 2015-06-20 16:48:11 UTC (rev 185798)
@@ -1,2 +1,2 @@
-CONSOLE MESSAGE: line 18: Canvas area exceeds the maximum limit (width * height > 67108864).
+CONSOLE MESSAGE: line 18: Canvas area exceeds the maximum limit (width * height > 268435456).
PASS: Saw exception.
Copied: trunk/LayoutTests/platform/ios-simulator/fast/canvas/canvas-toDataURL-crash-expected.txt (from rev 185797, trunk/LayoutTests/fast/canvas/canvas-toDataURL-crash-expected.txt) (0 => 185798)
--- trunk/LayoutTests/platform/ios-simulator/fast/canvas/canvas-toDataURL-crash-expected.txt (rev 0)
+++ trunk/LayoutTests/platform/ios-simulator/fast/canvas/canvas-toDataURL-crash-expected.txt 2015-06-20 16:48:11 UTC (rev 185798)
@@ -0,0 +1,6 @@
+CONSOLE MESSAGE: line 6: Canvas area exceeds the maximum limit (width * height > 16777216).
+PASS
+
+Calling toDataURL() on a huge canvas shouldn't crash. If the text above is "PASS", the test passed.
+
+
Copied: trunk/LayoutTests/platform/ios-simulator/fast/canvas/pattern-too-large-to-create-expected.txt (from rev 185797, trunk/LayoutTests/fast/canvas/pattern-too-large-to-create-expected.txt) (0 => 185798)
--- trunk/LayoutTests/platform/ios-simulator/fast/canvas/pattern-too-large-to-create-expected.txt (rev 0)
+++ trunk/LayoutTests/platform/ios-simulator/fast/canvas/pattern-too-large-to-create-expected.txt 2015-06-20 16:48:11 UTC (rev 185798)
@@ -0,0 +1,2 @@
+CONSOLE MESSAGE: line 18: Canvas area exceeds the maximum limit (width * height > 16777216).
+PASS: Saw exception.
Copied: trunk/LayoutTests/platform/mac-yosemite/fast/canvas/canvas-toDataURL-crash-expected.txt (from rev 185797, trunk/LayoutTests/fast/canvas/canvas-toDataURL-crash-expected.txt) (0 => 185798)
--- trunk/LayoutTests/platform/mac-yosemite/fast/canvas/canvas-toDataURL-crash-expected.txt (rev 0)
+++ trunk/LayoutTests/platform/mac-yosemite/fast/canvas/canvas-toDataURL-crash-expected.txt 2015-06-20 16:48:11 UTC (rev 185798)
@@ -0,0 +1,6 @@
+CONSOLE MESSAGE: line 6: Canvas area exceeds the maximum limit (width * height > 67108864).
+PASS
+
+Calling toDataURL() on a huge canvas shouldn't crash. If the text above is "PASS", the test passed.
+
+
Copied: trunk/LayoutTests/platform/mac-yosemite/fast/canvas/pattern-too-large-to-create-expected.txt (from rev 185797, trunk/LayoutTests/fast/canvas/pattern-too-large-to-create-expected.txt) (0 => 185798)
--- trunk/LayoutTests/platform/mac-yosemite/fast/canvas/pattern-too-large-to-create-expected.txt (rev 0)
+++ trunk/LayoutTests/platform/mac-yosemite/fast/canvas/pattern-too-large-to-create-expected.txt 2015-06-20 16:48:11 UTC (rev 185798)
@@ -0,0 +1,2 @@
+CONSOLE MESSAGE: line 18: Canvas area exceeds the maximum limit (width * height > 67108864).
+PASS: Saw exception.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes