Add memory space check routine before saving web storage data
[framework/web/webkit-efl.git] / LayoutTests / fullscreen / full-screen-request-rejected.html
1 <body>
2 <script src="full-screen-test.js"></script>
3 <div>This tests that a full-screen request which is not user-initiated will be rejected.
4 <script>
5     // Bail out early if the full screen API is not enabled or is missing:
6     if (Element.prototype.webkitRequestFullScreen == undefined) {
7         logResult(false, "Element.prototype.webkitRequestFullScreen == undefined");
8         endTest();
9     } else {
10         waitForEvent(document, 'webkitfullscreenchange', function() {
11            logResult("Entered full screen.", false); 
12            endTest();
13         });
14         if (testRunner)
15             testRunner.setPopupBlockingEnabled(true);
16         waitForEventAndEnd(document, 'webkitfullscreenerror');
17         document.documentElement.webkitRequestFullScreen();
18     }
19 </script>