chromium/third_party/blink/web_tests/fast/dom/shadow/shadow-dom-event-dispatching-details-summary.html

<!DOCTYPE html>
<html>
<head>
    <script src="../../../resources/js-test.js"></script>
    <script src="resources/shadow-dom.js"></script>
    <script src="resources/event-dispatching.js"></script>
</head>
<body>
    <p id="description"></p>
    <div id="sandbox"></div>
    <pre id="console"></pre>
    <script>
        var sandbox = document.getElementById('sandbox');

        sandbox.appendChild(
            createDOM('div', {'id': 'top'},
                      // 'details/summary' elements use Shadow DOM in its implementation.
                      createDOM('details', {'id': 'details', 'open': true},
                                createDOM('summary', {'id': 'summary'}))));

        addEventListeners(['top', 'details', 'summary']);
        showSandboxTree();

        moveMouse('details', 'summary');
        moveMouse('summary', 'details');
    </script>
</body>
</html>