noopener-popup.html (547B)
1 <!DOCTYPE html> 2 <script> 3 function findLink(arg) { 4 var doc; 5 if (arg == "self") { 6 doc = document; 7 } else { 8 doc = frames[0].document; 9 } 10 return doc.getElementById(arg + "target"); 11 } 12 </script> 13 <a rel="noopener" target="_self" id="selftarget" 14 href="noopener-target-1.html"></a> 15 <iframe srcdoc=' 16 <a rel="noopener" target="_parent" id="parenttarget" 17 href="noopener-target-1.html"></a> 18 <a rel="noopener" target="_top" id="toptarget" 19 href="noopener-target-1.html"></a>'></iframe>