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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 description("Ensure that the constructor for Path object and dependent functions exist.");
2
3 shouldBe("typeof document.getElementById", '"function"');
4
5 var path = new Path2D();
6 shouldBeType("path", "Path2D");
7 shouldBe("typeof path.closePath", '"function"');
8 shouldBe("typeof path.moveTo", '"function"');
9 shouldBe("typeof path.lineTo", '"function"');
10 shouldBe("typeof path.quadraticCurveTo", '"function"');
11 shouldBe("typeof path.bezierCurveTo", '"function"');
12 shouldBe("typeof path.arcTo", '"function"');
13 shouldBe("typeof path.arc", '"function"');
14 shouldBe("typeof path.rect", '"function"');
15 shouldBe("typeof path.ellipse", '"function"');
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698