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

Unified Diff: third_party/WebKit/LayoutTests/fast/images/crossfade-client-not-removed-crash.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 years, 1 month 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/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>

Powered by Google App Engine
This is Rietveld 408576698