Steps to Reproduce Behavior
Use
window.showModalDialog or
window.showModelessDialog to open the following HTML file in Internet Explorer 5.5:
<html>
<head>
<SCRIPT LANGUAGE=javascript>
function window_onload() {
textEdit.document.body.contentEditable = "True"; //This line works in Internet Explorer 5.5,
// but not in Internet Explorer 5.
textEdit.document.designMode="On"; //This line works in Internet Explorer 5,
// but not in Internet Explorer 5.5.
textEdit.focus();
}
</SCRIPT>
</head>
<body onload="return window_onload()" language="javascript">
<iframe name="textEdit" id="textEdit" width="400" height="280"></iframe>
</body>
</html>
Notice that you can edit the textEdit IFRAME in Internet Explorer 5, but not in Internet Explorer 5.5.