8 testRunner
.waitUntilDone();
10 // Not dumping as text since the DumpRenderTree does not dump the text content of child frames.
11 var button
= document
.getElementById('blankButton');
15 function subframeLoaded()
17 if (document
.getElementsByTagName('iframe')[0].contentDocument
.URL
== "about:blank")
19 if (window
.testRunner
)
20 testRunner
.notifyDone();
25 <body onload=
"runTest()">
26 <form action=
"resources/success.txt" method=
"GET" target=
"blankFrame">
27 <input type=
"submit" value=
"form" id=
"blankButton">
29 <div>This tests Targetted frame submission works. If the test is successful, the text
"SUCCESS" should be shown in the iframe below.
</div>
30 <iframe src=
"about:blank" name=
"blankFrame" onload=
"subframeLoaded()"></iframe>