tizen beta release
[profile/ivi/webkit-efl.git] / LayoutTests / fast / frames / sandboxed-iframe-about-blank.html
1 <html>
2 <head>
3 <script src="../js/resources/js-test-pre.js"></script>
4 <script>
5
6 if (window.layoutTestController)
7     layoutTestController.dumpAsText();
8
9 window.onload = function() { 
10     if (self.containing_frame.document.getElementById('plugin').destroyStream)
11         testPassed("containing frame was able to instantiate plugin");
12     else
13         testFailed("containing frame was unable to instantiate plugin");
14
15     isSuccessfullyParsed();
16
17
18 </script>
19 </head>
20 <body>
21     <iframe name="containing_frame"
22         src="resources/sandboxed-iframe-about-blank.html">
23     </iframe>
24
25     <p id="description"></p>
26
27     <div id="console"></div>
28
29     <script>
30     description("This test verifies that sandboxing 'about:blank' does not make the containing frame sandboxed.");
31     </script>
32 </body>
33 </html>