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> |