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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/dom/inert/resources/inert-focus-in-frames-frame1.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/inert/resources/inert-focus-in-frames-frame1.html b/third_party/WebKit/LayoutTests/fast/dom/inert/resources/inert-focus-in-frames-frame1.html
new file mode 100644
index 0000000000000000000000000000000000000000..a569993c98220f341170c7ee9afccd03bdd64349
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/dom/inert/resources/inert-focus-in-frames-frame1.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script>
+window.onload = parent.parent.frameLoaded;
+</script>
+</head>
+<body>
+<dialog id="dialog">
+ <button id="dialog-button" tabindex="0">Button</button>
+</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>

Powered by Google App Engine
This is Rietveld 408576698