1331295.html 614 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <script>
  6. function boom() {
  7. setTimeout(function(){
  8. var o=document.getElementById('b');
  9. document.getElementById('a').appendChild(o.parentNode.removeChild(o));
  10. },0);
  11. var o=document.getElementById('c');
  12. var p=document.getElementById('b');
  13. p.id=[o.id, o.id=p.id][0];
  14. o=document.getElementById('b');
  15. o.setAttribute('sandbox', 'disc');
  16. window.location.reload(true);
  17. }
  18. </script>
  19. </head>
  20. <body onload="boom();">
  21. <header id='a'></header>
  22. <output id='b'></output>
  23. <iframe id='c' sandbox='allow-same-origin' src='http://a'></iframe>
  24. </body>
  25. </html>