Index: third_party/WebKit/LayoutTests/fast/images/crossfade-client-not-removed-crash.html |
diff --git a/third_party/WebKit/LayoutTests/fast/images/crossfade-client-not-removed-crash.html b/third_party/WebKit/LayoutTests/fast/images/crossfade-client-not-removed-crash.html |
deleted file mode 100644 |
index 9b0e7aa161598efa55e204879aa2903955f174e8..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/images/crossfade-client-not-removed-crash.html |
+++ /dev/null |
@@ -1,34 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<body id=tCF1> |
-A |
-<style> |
-.class1 { |
- background-image: -webkit-cross-fade(url(#does-not-exist), url(http://-4294967295), 157%); |
-} |
-.class2:first-of-type { |
- -webkit-animation-direction: alternate; |
-} |
-</style> |
-<script> |
-if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
-var docElement = document.body; |
-docElement.contentEditable = "true"; |
- |
-function crash() { |
- test1 = document.createElementNS("http://www.w3.org/1999/xhtml", "thead"); |
- docElement.appendChild(test1); |
- test2 = document.createElementNS("http://www.w3.org/1999/xhtml", "intent"); |
- test2.setAttribute("class", "class2"); |
- docElement.appendChild(test2); |
- test1.setAttribute("class", "class1"); |
- window.getSelection().selectAllChildren(tCF1); |
- document.execCommand("hilitecolor", false, "#FF0000"); |
- document.execCommand("InsertText", false, "PASS. WebKit didn't crash."); |
-} |
- |
-document.addEventListener("DOMContentLoaded", crash, false); |
-</script> |
-</html> |