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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-object.js

Issue 2689243002: Use testharness.js instead of js-test.js in LayoutTests/fast/canvas tests. (Closed)
Patch Set: Addressing comments 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/script-tests/canvas-path-object.js
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-object.js b/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-object.js
deleted file mode 100644
index 73610aa9e1d2e7b612a3abde870b365e58467031..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/canvas/script-tests/canvas-path-object.js
+++ /dev/null
@@ -1,15 +0,0 @@
-description("Ensure that the constructor for Path object and dependent functions exist.");
-
-shouldBe("typeof document.getElementById", '"function"');
-
-var path = new Path2D();
-shouldBeType("path", "Path2D");
-shouldBe("typeof path.closePath", '"function"');
-shouldBe("typeof path.moveTo", '"function"');
-shouldBe("typeof path.lineTo", '"function"');
-shouldBe("typeof path.quadraticCurveTo", '"function"');
-shouldBe("typeof path.bezierCurveTo", '"function"');
-shouldBe("typeof path.arcTo", '"function"');
-shouldBe("typeof path.arc", '"function"');
-shouldBe("typeof path.rect", '"function"');
-shouldBe("typeof path.ellipse", '"function"');

Powered by Google App Engine
This is Rietveld 408576698