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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/fill-layer-crash.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/css/fill-layer-crash.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/fill-layer-crash.html b/third_party/WebKit/LayoutTests/fast/css/fill-layer-crash.html
deleted file mode 100644
index 39a1012494a4ef57e328d08f17805fc4c4af8124..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/css/fill-layer-crash.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<html>
-<head id="head">
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-</script>
-<style>
-* {background-image:inherit;}
-</style>
-</head>
-<body>
- <span></span>
-</body>
-<script>
-document.body.style.background="-webkit-canvas(foo)";
-var head = document.getElementById("head");
-style = document.createElement("style");
-style.type = "text/css";
-var rule = document.createTextNode("* {content:counter(mycount_id)}");
-style.appendChild(rule);
-head.appendChild(style);
-document.body.setAttribute("style","line-height:128mm;");
-</script>
-This test works if it doesn't crash.
-</html>

Powered by Google App Engine
This is Rietveld 408576698