Merge mozilla-central to autoland. a=merge CLOSED TREE
[gecko.git] / layout / reftests / details-summary / mouse-click-open-single-summary.html
blob9edf9d96b3d5810327935f07739a7a390c108f49
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 document.documentElement.removeAttribute("class");
12 </script>
13 <body onload="runTest();">
14 <details open>
15 <summary id="summary">Summary</summary>
16 <p>This is the details.</p>
17 </details>
18 </body>
19 </html>