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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/canvas-createImageBitmap-recursive.html

Issue 1413583004: refractoring ImageBitmap class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix leaked buffer Created 5 years, 1 month 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
Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-createImageBitmap-recursive.html
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-createImageBitmap-recursive.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-createImageBitmap-recursive.html
index 6bdc1cdf7e36a6cfdd529c0995f8eabb57d388fc..db885b05d552d37e50ff6d4677c639587a4a2381 100644
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-createImageBitmap-recursive.html
+++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-createImageBitmap-recursive.html
@@ -10,25 +10,25 @@ window.jsTestIsAsync = true;
function shouldBeFilled(x, y, w, h) {
shouldBeGreen(x+2, y+2);
- shouldBeGreen(x+w-2, y+h-2);
+ shouldBeGreen(x+w-3, y+h-3);
shouldBeGreen(x+w/2, y+h/2);
shouldBeClear(x-2, y-2);
shouldBeClear(x+w+2, y+h+2);
}
function shouldBeGreen(x, y) {
d = ctx.getImageData(x, y, 1, 1).data;
- shouldBeTrue("d[0] == 0");
- shouldBeTrue("d[1] == 255");
- shouldBeTrue("d[2] == 0");
- shouldBeTrue("d[3] == 255");
+ shouldBe("d[0]", "0");
+ shouldBe("d[1]", "255");
+ shouldBe("d[2]", "0");
+ shouldBe("d[3]", "255");
}
function shouldBeClear(x, y) {
// should be transparent black pixels
d = ctx.getImageData(x, y, 1, 1).data;
- shouldBeTrue("d[0] == 0");
- shouldBeTrue("d[1] == 0");
- shouldBeTrue("d[2] == 0");
- shouldBeTrue("d[3] == 0");
+ shouldBe("d[0]", "0");
+ shouldBe("d[1]", "0");
+ shouldBe("d[2]", "0");
+ shouldBe("d[3]", "0");
}
function shouldNotBeCalled() {
testFailed("Promise was rejected.");
@@ -127,6 +127,7 @@ function checkDrawnToRect(bitmap, x, y, w, h) {
shouldBeFilled(x3, y3, w3, h3);
clearContext(ctx);
+ ctx.imageSmoothingEnabled=false;
ctx.drawImage(imageBitmap, x1, y1, w1, h1, 0, 0, 50, 50);
shouldBeFilled(0, 0, 50, 50);
}

Powered by Google App Engine
This is Rietveld 408576698