Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / html / details-remove-summary-5-and-click.html
blobe15a1080a04f4f21c5da00cdf4f459f64b111ff5
1 <script>
3 var runTests = function () {
4 document.getElementById("dt1").removeChild(document.getElementById("summary1"));
6 if (!window.testRunner || !window.eventSender)
7 return;
8 eventSender.mouseMoveTo(2, 2);
9 eventSender.mouseDown();
10 eventSender.mouseUp();
13 </script>
15 <body style="margin: 0px" onload="runTests()">
16 <details open id="dt1">
17 <summary id="summary1">summary 1</summary>
18 <summary id="summary2">summary 2</summary>
19 </details>
20 </body>