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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-and-list-elements.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.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-and-list-elements.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-and-list-elements.html
deleted file mode 100644
index 2b6bd7460041559db597f6036da30fec3df67684..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-and-list-elements.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-/*
- * To fill missing UA styles which appears in the expected.html through the "li ul" selector in html.css.
- * Following <ul> crosses shadow boundary and doesn't match it.
- * https://bugs.webkit.org/show_bug.cgi?id=92192
- */
-* /deep/ ul {
- -webkit-margin-before: 0px;
- -webkit-margin-after: 0px;
-}
-</style>
-</head>
-<body>
-<div>
- <ol>
- <li>A</li>
- <li id="host">B</li>
- <li>C</li>
- </ol>
-</div>
-<script>
-// The tree to be created:
-//
-// <ol>
-// <li>A</li>
-// <li>B
-// #document-fragment
-// <li>X</li>
-// <ul><shadow></shadow></ul>
-// <li>Y</li>
-// </li>
-// <li>C</li>
-// </ol>
-var host = document.getElementById("host");
-var shadow = host.createShadowRoot();
-shadow.innerHTML = "<li>X</li><ul><shadow></shadow></ul><li>Y</li>";
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698