no-opener.html (407B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <html> 4 <p>This window should have no opener.</p> 5 <script src="/common/PrefixedLocalStorage.js"></script> 6 <script> 7 var prefixedLocalStorage = new PrefixedLocalStorageResource({ 8 close_on_cleanup: true 9 }); 10 function checkOpener () { 11 return prefixedLocalStorage.setItem('openerIsNull', window.opener === null); 12 } 13 </script> 14 <body onload="checkOpener()"> 15 </body> 16 </html>