Merge mozilla-central to autoland. a=merge CLOSED TREE
[gecko.git] / layout / reftests / details-summary / mouse-click-twice-single-summary.html
blob3609b84f2adbbf9b1cb695d8a8cf69acf2fc1e37
1 <!DOCTYPE html>
2 <!-- Any copyright is dedicated to the Public Domain.
3 - http://creativecommons.org/publicdomain/zero/1.0/ -->
5 <html class="reftest-wait">
6 <script>
7 function runTest() {
8 var summary = document.getElementById("summary");
9 summary.dispatchEvent(new MouseEvent("click"));
10 summary.dispatchEvent(new MouseEvent("click"));
11 document.documentElement.removeAttribute("class");
13 </script>
14 <body onload="runTest();">
15 <details>
16 <summary id="summary">Summary</summary>
17 <p>This is the details.</p>
18 </details>
19 </body>
20 </html>