Software QA FYI - SQAFYI

Popup Blocker Test - P_WINDOW_FULLSCREEN

- Popup Windows Triggered as Full Screen Windows - Developed by FYIcenter.com


Popup Behavior: A single popup window shows up occupying the entire screen. There is no other ways to close this popup window except press + keys at the same time.

Source Code Note: JavaScript codes implemented with an open method call.


Click your mouse here to start P_WINDOW_FULLSCREEN test...


If you don't see any popup windows, your popup blocker works on this popup test case.

HTML and JavaScript Codes Used by This Test

<a href="javascript:pWindowFullScreenTest();">Click ...
...
<script>
<script>
/*
*  Popup Blocker Test - P_WINDOW_FULLSCREEN
*  - Popup Windows Triggered as Full Screen Windows
*
*  A single popup window shows up occupying the entire 
*  screen. JavaScript codes implemented with an open method
*  call.
* 
*  Version of 2007.01.01
*  Download at http://sqa.fyicenter.com/tools/
*  Copyright (C) 2007 FYIcenter.com. All rights reserved.
*/
function pWindowFullScreenTest() {
   fyicenterWin = window.open('',
      '', 'fullscreen=yes');
   fyicenterWin.document.write('<html><body bgcolor="#eee...
   fyicenterWin.document.write('<p><b>P_WINDOW_FULLSCREEN...
   fyicenterWin.document.write(' - Popup Window Triggered...
   fyicenterWin.document.write(' - Developed by FYIcenter...
   fyicenterWin.document.write('<p><img src="popup_test_f...
   fyicenterWin.document.write('If you see this popup win...
   fyicenterWin.document.write('<p><br/><br/><br/>');
   fyicenterWin.document.write('<b>Press &lt;Alt&gt; + &lt;F
   fyicenterWin.document.write('</body></html>');
   fyicenterWin.document.close();
}
</script>


Popup Blocker Test - Popup Windows Triggered as Full Screen Windows