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

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

Issue 2088453002: Implement the inert attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: esprehn comments and fix layout tests to use testharness.js Created 4 years, 5 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 </dialog> 11 </dialog>
12 <input id="frame1-input" class="target" type="text"> 12 <input id="frame1-input" class="target" type="text">
13 <iframe id="iframe1" srcdoc=' 13 <iframe id="iframe1" srcdoc='
14 <dialog id="iframe-dialog"> 14 <dialog id="iframe-dialog">
15 <button id="iframe-dialog-button" tabindex="0">Button</button> 15 <button id="iframe-dialog-button" tabindex="0">Button</button>
16 </dialog> 16 </dialog>
17 <input id="iframe-input" class="target" type="date"> 17 <input id="iframe-input" class="target" type="date">
18 <script>window.onload = parent.parent.parent.frameLoaded;</script> 18 <script>window.onload = parent.parent.parent.frameLoaded;</script>
19 '> 19 '>
20 </body> 20 </body>
21 </html> 21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698