| Index: LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-input.html
|
| diff --git a/LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-input.html b/LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-input.html
|
| deleted file mode 100644
|
| index 91b8f22546b73173640080c002a949df33d171d6..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-input.html
|
| +++ /dev/null
|
| @@ -1,36 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| -</head>
|
| -
|
| -<body>
|
| -
|
| -<p>When the 'disabled' state of an input tag is changed, we have to invalidate distribution.</p>
|
| -
|
| -<div id="host1">
|
| - <input id="input1" value="Input 1">
|
| - <input id="input2" value="Input 2">
|
| -</div>
|
| -
|
| -<div id="host2">
|
| - <input id="input3" value="Input 3" disabled>
|
| - <input id="input4" value="Input 4" disabled>
|
| -</div>
|
| -
|
| -<script>
|
| -if (window.testRunner)
|
| - testRunner.waitUntilDone();
|
| -
|
| -host1.createShadowRoot().innerHTML = '<content select=":disabled"></content>';
|
| -host2.createShadowRoot().innerHTML = '<content select=":disabled"></content>';
|
| -
|
| -setTimeout(function() {
|
| - input2.setAttribute('disabled', true);
|
| - input4.removeAttribute('disabled');
|
| - testRunner.notifyDone();
|
| -}, 0);
|
| -
|
| -</script>
|
| -</body>
|
| -</html>
|
| -
|
|
|