[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / dynamic / float-at-line-break.html
1 <div style="width: 25px; font: 25px Ahem; -webkit-font-smoothing: none;">
2     <img style="width: 20px; height: 50px; background-color: blue;"><img id="image" style="width: 50px; height: 50px; background-color: yellow; display: none;"><span id="target" style="float: left;"></span>~</div>
3 <script>
4     document.body.offsetTop;
5     document.getElementById("image").style.display = "";
6
7     document.body.offsetTop;
8     var target = document.getElementById("target");
9     target.parentNode.removeChild(target);
10 </script>