Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / inconsistent-in-removeChildNode.html-disabled
blob96e4c7a0d3988a240938a464fc6a79c5b42c5b99
1 <p>
2     Test for <a href="rdar://problem/5645813">rdar://problem/5645813</a>.
3 </p>
4 <div id="d1">
5     Selected text
6 </div>
7 <div id="d2">
8     YOU SHOULD NOT SEE THIS TEXT
9 </div>
10 <div id="d3" style="background: red; width: 50px; height: 50px;">
11 </div>
12 <script>
13     getSelection().setBaseAndExtent(d1, 0, d2.firstChild, 6);
14     d2.style.display = "none";
15     document.body.offsetTop;
16     d3.style.display = "none";
17     d3.parentNode.removeChild(d3);
18 </script>