[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / html / details-remove-summary-1.html
1 <script>
2
3 var runTests = function () {
4     document.getElementById("dt1").removeChild(document.getElementById("summary1"));
5 };
6
7 </script>
8
9 <body onload="runTests()">
10     <details id="dt1">
11         <summary id="summary1">summary</summary>
12     </details>
13 </body>