| 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>
|
| -
|
|
|