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