次のコードはFirefox3.6で機能しますが、InternetExplorer8では機能しません。
<html>
<head>
<title>Example</title>
<script type="text/javascript">
function init() {
alert(document.designMode);
document.designMode = "on";
alert(document.designMode);
}
</script>
</head>
<body onload="init()">
</body>
</html>
FFでは、アラートは「オフ」、次に「オン」を示します。IEでは、両方とも「オフ」です。
私は何が間違っているのですか?