open-closer.html (506B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <html> 4 <body onload="openAuxiliary()"> 5 <a rel="opener" target="_blank">Open auxiliary context that will close this window (its opener)</a> 6 <script src="/common/PrefixedLocalStorage.js"></script> 7 <script> 8 function openAuxiliary () { 9 var prefixedLocalStorage = new PrefixedLocalStorageResource(); 10 var a = document.body.querySelector('a'); 11 a.href = prefixedLocalStorage.url('close-opener.html'); 12 document.body.append(a); 13 a.click(); 14 } 15 </script> 16 </body> 17 </html>