Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / html / details-remove-summary-5.html
blobf10e52a978f48719d513376687242ca70895440c
1 <script>
3 var runTests = function () {
4 document.getElementById("dt1").removeChild(document.getElementById("summary1"));
5 };
7 </script>
9 <body onload="runTests()">
10 <details open id="dt1">
11 <summary id="summary1">summary 1</summary>
12 <summary id="summary2">summary 2</summary>
13 </details>
14 </body>