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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/canvas-save-restore-with-path.js

Issue 2696023002: Use testharness.js instead of js-test.js in LayoutTests/fast/canvas tests. (Closed)
Patch Set: Rebaseline Created 3 years, 10 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
Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-save-restore-with-path.js
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-save-restore-with-path.js b/third_party/WebKit/LayoutTests/fast/canvas/canvas-save-restore-with-path.js
deleted file mode 100644
index 184c7e2852dbcd3cbc39605bd4272ee96273dcfb..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-save-restore-with-path.js
+++ /dev/null
@@ -1,66 +0,0 @@
-description("This test ensures that paths are correctly handled over save/restore boundaries");
-
-function dataToArray(data) {
- var result = new Array(data.length)
- for (var i = 0; i < data.length; i++)
- result[i] = data[i];
- return result;
-}
-
-function getPixel(x, y) {
- var data = context.getImageData(x,y,1,1);
- if (!data) // getImageData failed, which should never happen
- return [-1,-1,-1,-1];
- return dataToArray(data.data);
-}
-
-function pixelShouldBe(x, y, colour) {
- shouldBe("getPixel(" + [x, y] +")", "["+colour+"]");
-}
-
-var canvas = document.createElement("canvas");
-canvas.width = 100;
-canvas.height = 100;
-
-var context = canvas.getContext("2d");
-context.fillStyle = "red";
-context.fillRect(0,0,100,100);
-context.fillStyle = "green";
-
-// Test translate
-context.beginPath();
-context.save();
-context.translate(100, 100);
-context.rect(-100, -100, 50, 50);
-context.restore();
-context.fill();
-pixelShouldBe(25, 25, [0, 128, 0, 255]);
-
-// Test scale
-context.beginPath();
-context.save();
-context.scale(2, 2);
-context.rect(25, 0,25,25);
-context.restore();
-context.fill();
-pixelShouldBe(75, 25, [0, 128, 0, 255]);
-pixelShouldBe(75, 75, [255, 0, 0, 255]);
-
-// Test rotate
-context.beginPath();
-context.save();
-context.rotate(90/180 * Math.PI);
-context.rect(50, -50, 50, 50);
-context.restore();
-context.fill();
-pixelShouldBe(25, 75, [0, 128, 0, 255]);
-pixelShouldBe(75, 75, [255, 0, 0, 255]);
-
-// Test transform
-context.beginPath();
-context.save();
-context.transform(1, 0, 0, 1, 50, 50);
-context.rect(0, 0, 50, 50);
-context.restore();
-context.fill();
-pixelShouldBe(75, 75, [0, 128, 0, 255]);

Powered by Google App Engine
This is Rietveld 408576698