summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/frames/iframe-target.html
blob: 8fbcfe506e86e3a7a5077ab016e0337815935a59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
    <script>
    function runTests() {
        if (window.layoutTestController)
            layoutTestController.dumpAsText();
            
        var l = document.getElementById('theform');
        l.submit()
    }
    </script>
</head>
<body onload="runTests()">
<form id="theform" action="about:blank" target="theframe">
<input type="submit">
<iframe name="theframe">
</iframe>
<div>
This tests that frame targets work. If this text is successful, this text should still be shown.
</div>
</body>
</html>