Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(404)

Side by Side Diff: third_party/WebKit/LayoutTests/html/dialog/resources/inert-focus-in-frames-frame1.html

Issue 2883033003: Propagate inert state to OOPIFs when a modal dialog is active (Closed)
Patch Set: Rebase only Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script> 4 <script>
5 window.onload = parent.parent.frameLoaded; 5 window.onload = parent.parent.frameLoaded;
6 </script> 6 </script>
7 </head> 7 </head>
8 <body> 8 <body>
9 <dialog id="dialog"> 9 <dialog id="dialog">
10 <button id="dialog-button" tabindex="0">Button</button> 10 <button id="dialog-button" tabindex="0">Button</button>
11 <iframe id="iframe-in-dialog" srcdoc='
12 <input id="iframe-under-dialog-input" class="target" type="date">
13 '></iframe>
11 </dialog> 14 </dialog>
12 <input id="frame1-input" class="target" type="text"> 15 <input id="frame1-input" class="target" type="text">
13 <iframe id="iframe1" srcdoc=' 16 <iframe id="iframe1" srcdoc='
14 <dialog id="iframe-dialog"> 17 <dialog id="iframe-dialog">
15 <button id="iframe-dialog-button" tabindex="0">Button</button> 18 <button id="iframe-dialog-button" tabindex="0">Button</button>
16 </dialog> 19 </dialog>
17 <input id="iframe-input" class="target" type="date"> 20 <input id="iframe-input" class="target" type="date">
18 <script>window.onload = parent.parent.parent.frameLoaded;</script> 21 <script>window.onload = parent.parent.parent.frameLoaded;</script>
19 '> 22 '>
20 </body> 23 </body>
21 </html> 24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698