https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 8f50d3060058ddcb1704ee69fa435b850e0c54bd authored by ffxbld on 02 March 2017, 22:28:09 UTC
Added FENNEC_52_0_RELEASE FENNEC_52_0_BUILD2 tag(s) for changeset aab6e1c401fc. DONTBUILD CLOSED TREE a=release
Tip revision: 8f50d30
mouse-click-twice-open-single-summary.html
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
   - http://creativecommons.org/publicdomain/zero/1.0/ -->

<html class="reftest-wait">
  <script>
  function runTest() {
    var summary = document.getElementById("summary");
    summary.dispatchEvent(new MouseEvent("click"));
    summary.dispatchEvent(new MouseEvent("click"));
    document.documentElement.removeAttribute("class");
  }
  </script>
  <body onload="runTest();">
    <details open>
      <summary id="summary">Summary</summary>
      <p>This is the details.</p>
    </details>
  </body>
</html>
back to top