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

Unified Diff: LayoutTests/fast/dom/shadow/pseudoclass-update-checked-input.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-checked-input.html
diff --git a/LayoutTests/fast/dom/shadow/pseudoclass-update-checked-input.html b/LayoutTests/fast/dom/shadow/pseudoclass-update-checked-input.html
deleted file mode 100644
index f1566a726c6e89de181f024d9a9ce88a12daf54c..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dom/shadow/pseudoclass-update-checked-input.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-</head>
-
-<body>
-
-<p>When an input element became 'checked' or not-'checked', distribution should happen.</p>
-
-<p>Case 1: input[type=checkbox] becomes checked</p>
-<div id="host1">
- <input id="input1" type="checkbox">
-</div>
-
-<p>Case 2: input[type=checkbox] becomes non-checked</p>
-<div id="host2">
- <input id="input2" type="checkbox" checked>
-</div>
-
-<p>Case 3: input[type=radio] becomes checked</p>
-<div id="host3">
- <input id="input3" name="radio3" type="radio">
-</div>
-
-<p>Case 4: input[type=radio] becomes non-checked</p>
-<div id="host4">
- <input id="input4" name="radio4" type="radio" checked>
-</div>
-
-
-<script>
-if (window.testRunner)
- testRunner.waitUntilDone();
-
-host1.createShadowRoot().innerHTML = '<content select="input:checked">';
-host2.createShadowRoot().innerHTML = '<content select="input:checked">';
-host3.createShadowRoot().innerHTML = '<content select="input:checked">';
-host4.createShadowRoot().innerHTML = '<content select="input:checked">';
-
-setTimeout(function() {
- input1.checked = true;
- input2.checked = false;
- input3.checked = true;
- input4.checked = false;
- testRunner.notifyDone();
-}, 0);
-
-</script>
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698