| Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-bg.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg.html
|
| deleted file mode 100644
|
| index 54df64841cfd598de8c2da75fb3309b9a8cc6794..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-bg.html
|
| +++ /dev/null
|
| @@ -1,22 +0,0 @@
|
| -<html>
|
| - <head>
|
| - <style>
|
| - div { background: -webkit-canvas(squares); width:600px; height:600px; }
|
| - </style>
|
| -
|
| - <script type="application/x-javascript">
|
| -function draw(w, h) {
|
| - var ctx = document.getCSSCanvasContext("2d", "squares", w, h);
|
| -
|
| - ctx.fillStyle = "rgb(200,0,0)";
|
| - ctx.fillRect (10, 10, 55, 50);
|
| -
|
| - ctx.fillStyle = "rgb(0, 0, 200)";
|
| - ctx.fillRect (30, 30, 55, 50);
|
| -}
|
| - </script>
|
| - </head>
|
| - <body onload="draw(300, 300)">
|
| - <div></div>
|
| - </body>
|
| -</html>
|
|
|