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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-and-list-elements-expected.html

Issue 2843883002: Remove, or rewrite if necessary, tests which use /deep/ or ::shadow (Closed)
Patch Set: rev Created 3 years, 8 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/dom/shadow/shadow-and-list-elements-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-and-list-elements-expected.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-and-list-elements-expected.html
deleted file mode 100644
index 28291b12a836fb93a43b9aec23ca6a8055b474c8..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-and-list-elements-expected.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<div>
- <ol>
- <li>A</li>
- <li id="hostEquivalent"></li>
- <li>C</li>
- </ol>
-</div>
-<script>
-// We cannot use hostEquivalent.innerHTML instead of appendChild()s because
-// the parser prevents to create expected tree:
-//
-// <ol>
-// <li>A</li>
-// <li>
-// <li>X</li>
-// <ul>B</ul>
-// <li>Y</li>
-// </li>
-// <li>C</li>
-// </ol>
-var hostEquivalent = document.getElementById("hostEquivalent");
-
-var childX = document.createElement("li");
-childX.innerHTML = "X";
-hostEquivalent.appendChild(childX);
-
-var childUl = document.createElement("ul");
-childUl.innerHTML = "B";
-hostEquivalent.appendChild(childUl);
-
-var childY = document.createElement("li");
-childY.innerHTML = "Y";
-hostEquivalent.appendChild(childY);
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698