summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/interactive-elements/the-dialog-element/resources/inert-focus-in-frames-frame1.html
blob: c5566bc092a3c4a53202013570f314b867ce0bf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<script>
window.onload = parent.parent.frameLoaded;
</script>
</head>
<body>
<dialog id="dialog">
    <button id="dialog-button" tabindex="0">Button</button>
    <iframe id="iframe-in-dialog" srcdoc='
        <input id="iframe-under-dialog-input" class="target" type="date">
    '></iframe>
</dialog>
<input id="frame1-input" class="target" type="text">
<iframe id="iframe1" srcdoc='
    <dialog id="iframe-dialog">
        <button id="iframe-dialog-button" tabindex="0">Button</button>
    </dialog>
    <input id="iframe-input" class="target" type="date">
    <script>window.onload = parent.parent.parent.frameLoaded;</script>
'>
</body>
</html>