summaryrefslogtreecommitdiffstats
path: root/WebCore/manual-tests/resources/focused-iframe.html
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/manual-tests/resources/focused-iframe.html')
-rw-r--r--WebCore/manual-tests/resources/focused-iframe.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/WebCore/manual-tests/resources/focused-iframe.html b/WebCore/manual-tests/resources/focused-iframe.html
new file mode 100644
index 0000000..50b49a5
--- /dev/null
+++ b/WebCore/manual-tests/resources/focused-iframe.html
@@ -0,0 +1,12 @@
+<html>
+<body onload="load()">
+ This frame should get the focus.
+ <input id="box"></input>
+ <script>
+ function load()
+ {
+ document.getElementById("box").focus();
+ }
+ </script>
+</body>
+</html>