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

Unified Diff: LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-optgroup.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-disabled-optgroup.html
diff --git a/LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-optgroup.html b/LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-optgroup.html
deleted file mode 100644
index c1ea030116d5010616df2172c838d21187de3127..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-optgroup.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../../resources/js-test.js"></script>
-</head>
-
-<body>
-
-<p>When an optgroup element became 'disabled' or not-'disabled', distribution should happen.</p>
-<p>Since an optgroup element does not create a renderer, we cannot check this using reftest.</p>
-
-<div id="container">
- <div id="host1">
- <optgroup id="optgroup1">optgroup 1</optgroup>
- <optgroup id="optgroup2">optgroup 2</optgroup>
- </div>
-
- <div id="host2">
- <optgroup id="optgroup3" disabled>optgroup 3</optgroup>
- <optgroup id="optgroup4" disabled>optgroup 4</optgroup>
- </div>
-</div>
-
-<pre id="console"></pre>
-
-<script>
-jsTestIsAsync = true;
-
-var shadowRoot1 = host1.createShadowRoot();
-var shadowRoot2 = host2.createShadowRoot();
-
-shadowRoot1.innerHTML = '<content select=":disabled">';
-shadowRoot2.innerHTML = '<content select=":disabled">';
-
-var content1 = shadowRoot1.querySelector('content');
-var content2 = shadowRoot2.querySelector('content');
-
-setTimeout(function() {
- optgroup2.setAttribute('disabled', true);
- optgroup4.removeAttribute('disabled');
-
- nodes1 = content1.getDistributedNodes();
- shouldBe('nodes1.length', '1');
- shouldBe('nodes1.item(0).innerHTML', '"optgroup 2"');
-
- nodes2 = content2.getDistributedNodes();
- shouldBe('nodes2.length', '1');
- shouldBe('nodes2.item(0).innerHTML', '"optgroup 3"');
-
- container.innerHTML = "";
- finishJSTest();
-}, 0);
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698