Index: third_party/WebKit/LayoutTests/fast/canvas/canvas-invalid-fillstyle.js |
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-invalid-fillstyle.js b/third_party/WebKit/LayoutTests/fast/canvas/canvas-invalid-fillstyle.js |
deleted file mode 100644 |
index 752e5ff3783c1087226fe7570f474bc34a342092..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-invalid-fillstyle.js |
+++ /dev/null |
@@ -1,10 +0,0 @@ |
-description("Series of tests to ensure correct behaviour on an invalid fillStyle()"); |
-var ctx = document.getElementById('canvas').getContext('2d'); |
-ctx.fillStyle = 'rgb(0, 255, 0)'; |
-ctx.fillStyle = 'nonsense'; |
-ctx.fillRect(0, 0, 200, 200); |
-var imageData = ctx.getImageData(0, 0, 200, 200); |
-var imgdata = imageData.data; |
-shouldBe("imgdata[4]", "0"); |
-shouldBe("imgdata[5]", "255"); |
-shouldBe("imgdata[6]", "0"); |