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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/canvas-css-crazy.html

Issue 1416793004: Remove support for -webkit-canvas and Document.getCSSCanvasContext. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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-css-crazy.html
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-css-crazy.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-css-crazy.html
deleted file mode 100644
index f8678dfdd8d6dec9632f8a3011c8c90be02325d0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-css-crazy.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
- <head>
- <style>
- div { background: -webkit-canvas(squares); width:600px; height:600px; border:2px solid black }
- </style>
- <script>
-if (window.testRunner)
- testRunner.dumpAsText();
-
-function draw(w, h) {
- var ctx = document.getCSSCanvasContext("4d", "squares", w, h);
- if (ctx !== null)
- alert("FAIL! ctx wasn't null: " + ctx);
- alert("PASS");
-}
- </script>
- </head>
- <body onload="draw(300, 300)">
- <div></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698