Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-bg-expected.html |
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg-expected.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg-expected.html |
deleted file mode 100644 |
index 65c36a18a76f9728b40a855e508efdbe7aad6e39..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg-expected.html |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-<html> |
- <head> |
- <script type="application/x-javascript"> |
-function draw() { |
- var ctx = document.getElementById('c').getContext('2d'); |
- |
- ctx.fillStyle = "rgb(200,0,0)"; |
- ctx.fillRect (10, 10, 55, 50); |
- ctx.fillRect (310, 10, 55, 50); |
- ctx.fillRect (10, 310, 55, 50); |
- ctx.fillRect (310, 310, 55, 50); |
- |
- ctx.fillStyle = "rgb(0, 0, 200)"; |
- ctx.fillRect (30, 30, 55, 50); |
- ctx.fillRect (330, 30, 55, 50); |
- ctx.fillRect (30, 330, 55, 50); |
- ctx.fillRect (330, 330, 55, 50); |
-} |
- </script> |
- </head> |
- <body onload="draw();"> |
- <canvas id="c" width="600" height="600"></div> |
- </body> |
-</html> |