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