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

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: Revert histograms.xml Created 3 years, 6 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 window.onload = parent.parent.frameLoaded;
6 </script>
7 </head>
8 <body>
9 <dialog id="dialog">
10 <button id="dialog-button" tabindex="0">Button</button>
11 </dialog>
12 <input id="frame1-input" class="target" type="text">
13 <iframe id="iframe1" srcdoc='
14 <dialog id="iframe-dialog">
15 <button id="iframe-dialog-button" tabindex="0">Button</button>
16 </dialog>
17 <input id="iframe-input" class="target" type="date">
18 <script>window.onload = parent.parent.parent.frameLoaded;</script>
19 '>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698