Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / html / details-remove-summary-6-and-click.html
blobb26883bebf65189f5843fd50682ee3dd644f392e
1 <script>
3 var runTests = function () {
4 document.getElementById("dt1").removeChild(document.getElementById("summary2"));
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>