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

Unified Diff: LayoutTests/fast/dom/shadow/distributed-pseudo-element-specifiers-in-left-side.html

Issue 212123002: Unship '::-webkit-distributed(...)' functional pseudo element. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 9 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: LayoutTests/fast/dom/shadow/distributed-pseudo-element-specifiers-in-left-side.html
diff --git a/LayoutTests/fast/dom/shadow/distributed-pseudo-element-specifiers-in-left-side.html b/LayoutTests/fast/dom/shadow/distributed-pseudo-element-specifiers-in-left-side.html
deleted file mode 100644
index 712c1e2eae684143a2560aea74570e00c23313fa..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/shadow/distributed-pseudo-element-specifiers-in-left-side.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="resources/shadow-dom.js"></script>
-</head>
-<body>
-<div id="sandbox"></div>
-<script>
-var shadowStyle = document.createElement('style');
-shadowStyle.innerHTML = 'content.non-exist::-webkit-distributed(div) { color: red; }'
- + 'content.content-class::-webkit-distributed(div) { color: green; }'
- + '#content-id::-webkit-distributed(div) { color: blue; }';
-
-var sandbox = document.getElementById('sandbox');
-sandbox.appendChild(
- createDOM('div', {'id': 'host'},
- createShadowRoot(
- createDOM('content', {'select': '#host-child-1'}),
- createDOM('content', {'class': 'content-class', 'select': '#host-child-2'}),
- createDOM('content', {'id': 'content-id', 'select': '#host-child-3'}),
- shadowStyle),
- createDOM('div', {'id': 'host-child-1'},
- document.createTextNode('normal')),
- createDOM('div', {'id': 'host-child-2'},
- document.createTextNode('green')),
- createDOM('div', {'id': 'host-child-3'},
- document.createTextNode('blue'))));
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698