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

Unified Diff: LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-option.html

Issue 1129673002: Remove support for pseudo classes in <content select>. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix more tests. Created 5 years, 7 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/pseudoclass-update-enabled-option.html
diff --git a/LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-option.html b/LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-option.html
deleted file mode 100644
index 4f4405f54db28757b6534ed6d82221f2eb9cd06a..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-option.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../../resources/js-test.js"></script>
-</head>
-
-<body>
-
-<p>When an option element became 'enabled' or not-'enabled', distribution should happen.</p>
-<p>Since an option element does not create a renderer, we cannot check this using reftest.</p>
-
-<div id="container">
- <div id="host1">
- <option id="option1">option 1</option>
- <option id="option2">option 2</option>
- </div>
-
- <div id="host2">
- <option id="option3" disabled>option 3</option>
- <option id="option4" disabled>option 4</option>
- </div>
-</div>
-
-<pre id="console"></pre>
-
-<script>
-jsTestIsAsync = true;
-
-var shadowRoot1 = host1.createShadowRoot();
-var shadowRoot2 = host2.createShadowRoot();
-
-shadowRoot1.innerHTML = '<content select=":enabled">';
-shadowRoot2.innerHTML = '<content select=":enabled">';
-
-var content1 = shadowRoot1.querySelector('content');
-var content2 = shadowRoot2.querySelector('content');
-
-setTimeout(function() {
- option2.setAttribute('disabled', true);
- option4.removeAttribute('disabled');
-
- nodes1 = content1.getDistributedNodes();
- shouldBe('nodes1.length', '1');
- shouldBe('nodes1.item(0).innerHTML', '"option 1"');
-
- nodes2 = content2.getDistributedNodes();
- shouldBe('nodes2.length', '1');
- shouldBe('nodes2.item(0).innerHTML', '"option 4"');
-
- container.innerHTML = "";
- finishJSTest();
-}, 0);
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698