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

Unified Diff: third_party/WebKit/LayoutTests/fast/images/content-url-canvas.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/images/content-url-canvas.html
diff --git a/third_party/WebKit/LayoutTests/fast/images/content-url-canvas.html b/third_party/WebKit/LayoutTests/fast/images/content-url-canvas.html
deleted file mode 100644
index d8b59585f309369dedf5f6371f4149ecd837fbed..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/images/content-url-canvas.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<!DOCTYPE html>
-<style>
- img { content: -webkit-canvas(img); width: 24px; height: 24px; }
-</style>
-<img>
-<p> crbug.com/521152: Tests for crash introduced by r200510: should display a green square.</p>
-<script>
- var ctx = document.getCSSCanvasContext("2d", "img", 24, 24);
- ctx.fillStyle = "rgb(0,255,1)";
- ctx.fillRect (0, 0, 24, 24);
-</script>

Powered by Google App Engine
This is Rietveld 408576698