Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / remove-children-notification-order.html
blobf7ea54dd4e75102abc0ad49417aa6c400f48d923
1 <select id="target">
2 <option>FAIL</option>
3 </select>
4 <p id="result">
5 FAIL: Test did not run
6 </p>
7 <script>
8 if (window.testRunner)
9 testRunner.dumpAsText();
11 var target = document.getElementById("target");
12 target.appendChild(document.createElement("link"));
13 target.offsetTop;
15 target.innerHTML = "<option>PASS</option>";
17 document.getElementById("result").innerHTML = target.value;
18 </script>