Bug 389350 - "No editable iframe with these steps to follow" (tests) [p=cpearce r=roc]

This commit is contained in:
reed@reedloden.com 2007-11-01 21:38:35 -07:00
parent ebd7f03056
commit 64a11c7a8e
2 changed files with 36 additions and 0 deletions

View File

@ -47,6 +47,7 @@ include $(topsrcdir)/config/rules.mk
_TEST_FILES = \
test_bug348497.html \
test_bug384147.html \
test_bug389350.html \
$(NULL)
libs:: $(_TEST_FILES)

View File

@ -0,0 +1,35 @@
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=389350
-->
<head>
<title>Test for Bug 389350</title>
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<script type="text/javascript">
function runTest() {
var e = document.getElementById("edit");
e.contentDocument.designMode='on';
e.style.display='block';
e.focus();
sendChar('a', e.contentDocument);
sendChar('b', e.contentDocument);
sendChar('c', e.contentDocument);
var frame_html = "<head><title></title></head><body>abc</body>";
ok(frame_html == e.contentDocument.documentElement.innerHTML);
SimpleTest.finish();
}
SimpleTest.waitForExplicitFinish();
addLoadEvent(runTest);
</script>
</head>
<body id="body">
<iframe id="edit" width="200" height="100" style="display: none;" src="">
</body>
</html>