tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / history / history-back-within-subframe-url.html
1 <body>
2 <script>
3 onload = function() {
4   if (window.layoutTestController)
5   {
6       layoutTestController.dumpAsText();
7       layoutTestController.waitUntilDone();
8   }
9 }
10
11 wentBack = false;
12
13 function onFrameLoaded()
14 {
15     wentBack = true;
16     history.back();
17     document.getElementById('result').innerText = 'PASS';
18     if (window.layoutTestController)
19         layoutTestController.notifyDone();      
20 }
21 </script>
22 <iframe src="resources/history-back-within-subframe-url-2.html"></iframe>
23 <div id="result">FAIL</div>
24 </body>