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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/canvas-as-image-incremental-repaint.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-as-image-incremental-repaint.html
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-as-image-incremental-repaint.html b/third_party/WebKit/LayoutTests/fast/canvas/canvas-as-image-incremental-repaint.html
deleted file mode 100644
index b8beb291ab48ec57d351173ca7b569bba29565bf..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-as-image-incremental-repaint.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<html>
- <head>
- <style>
- div {
- width:600px;
- height:500px;
- border:2px solid black;
- content: -webkit-canvas(squares);
- }
- </style>
- <script src="../../resources/run-after-layout-and-paint.js"></script>
- <script type="application/x-javascript">
- if (window.testRunner) {
- testRunner.dumpAsTextWithPixelResults();
- testRunner.waitUntilDone();
- }
- function repaintTest()
- {
- var ctx = document.getCSSCanvasContext("2d", "squares", 300, 300);
-
- ctx.fillStyle = "rgb(200,0,0)";
- ctx.fillRect (10, 10, 100, 100);
-
- ctx.fillStyle = "rgba(0, 0, 200, 0.5)";
- ctx.fillRect (50, 50, 100, 100);
- if (window.testRunner)
- testRunner.notifyDone();
- }
- </script>
-</head>
-<body onload="runAfterLayoutAndPaint(repaintTest)">
- <div></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698