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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/script-tests/linearGradient-infinite-values.js

Issue 2703803002: 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
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/canvas/script-tests/gradient-with-clip.js ('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/script-tests/linearGradient-infinite-values.js
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/script-tests/linearGradient-infinite-values.js b/third_party/WebKit/LayoutTests/fast/canvas/script-tests/linearGradient-infinite-values.js
deleted file mode 100644
index a3f886aaf8ecac18705c3181e4c125808a1e270c..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/canvas/script-tests/linearGradient-infinite-values.js
+++ /dev/null
@@ -1,18 +0,0 @@
-description(
-'This test checks createLinearGradient with infinite values'
-);
-
-var ctx = document.createElement('canvas').getContext('2d');
-
-shouldThrow("ctx.createLinearGradient(0, 0, 100, NaN)");
-shouldThrow("ctx.createLinearGradient(0, 0, 100, Infinity)");
-shouldThrow("ctx.createLinearGradient(0, 0, 100, -Infinity)");
-shouldThrow("ctx.createLinearGradient(0, 0, NaN, 100)");
-shouldThrow("ctx.createLinearGradient(0, 0, Infinity, 100)");
-shouldThrow("ctx.createLinearGradient(0, 0, -Infinity, 100)");
-shouldThrow("ctx.createLinearGradient(0, NaN, 100, 100)");
-shouldThrow("ctx.createLinearGradient(0, Infinity, 100, 100)");
-shouldThrow("ctx.createLinearGradient(0, -Infinity, 100, 100)");
-shouldThrow("ctx.createLinearGradient(NaN, 0, 100, 100)");
-shouldThrow("ctx.createLinearGradient(Infinity, 0, 100, 100)");
-shouldThrow("ctx.createLinearGradient(-Infinity, 0, 100, 100)");
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/canvas/script-tests/gradient-with-clip.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698