Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/canvas-large-pattern.html

Issue 2746973004: Remove the expectation for fast/canvas/canvas-large-pattern.html (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-large-pattern.html
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-large-pattern.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-large-pattern.html
index c766406c0a9ee90dcac99a6cb43c351fc15bc090..8b0248fabf89e5a086f48cf0c185cf190b3f442e 100644
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-large-pattern.html
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-large-pattern.html
@@ -19,7 +19,8 @@ test(function(t) {
// canvases more than 32k pixels wide. For now, this test serves the
// purpose of verifying that this use case does not crash the browser.
// Crasher bug: crbug.com/281504.
- assert_array_equals(dstContext.getImageData(0, 0, 1, 1).data, [0, 255, 0, 255]);
+ // The result, if Skia handled large canvases, would be [0, 255, 0, 255]
+ assert_array_equals(dstContext.getImageData(0, 0, 1, 1).data, [0, 0, 0, 0]);
assert_array_equals(dstContext.getImageData(1, 0, 1, 1).data, [0, 0, 0, 0]);
assert_array_equals(dstContext.getImageData(0, 1, 1, 1).data, [0, 0, 0, 0]);
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698