зеркало из https://github.com/mozilla/pjs.git
Mochitest for bug 386728. r/sr=jst.
This commit is contained in:
Родитель
fc9330513c
Коммит
626a6a99c6
|
@ -76,6 +76,7 @@ _TEST_FILES = test_bug589.html \
|
|||
test_bug375003-1.html \
|
||||
test_bug375003-2.html \
|
||||
test_bug384419.html \
|
||||
test_bug386728.html \
|
||||
$(NULL)
|
||||
|
||||
libs:: $(_TEST_FILES)
|
||||
|
|
|
@ -0,0 +1,46 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=386728
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 386728</title>
|
||||
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
</head>
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=386728">Mozilla Bug 386728</a>
|
||||
<p id="display"></p>
|
||||
<div id="content">
|
||||
<div id="frameContent">
|
||||
<div id="edit">This text is editable</div>
|
||||
<button id="button_on" onclick="document.getElementById('edit').setAttribute('contenteditable', 'true')"></button>
|
||||
</div>
|
||||
<iframe id="testIframe"></iframe>
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script class="testbody" type="text/javascript">
|
||||
|
||||
/** Test for Bug 386728 **/
|
||||
|
||||
var frame = document.getElementById("testIframe");
|
||||
|
||||
function testContentEditable() {
|
||||
frame.style.display = 'block';
|
||||
var frameContent = frame.contentDocument.adoptNode(document.getElementById("frameContent"));
|
||||
frame.contentDocument.body.appendChild(frameContent);
|
||||
frame.contentDocument.contentEditable = "true";
|
||||
frame.contentDocument.contentEditable = "false";
|
||||
frame.contentDocument.getElementById("button_on").click();
|
||||
is(frame.contentDocument.getElementById("edit").contentEditable, "true");
|
||||
}
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
addLoadEvent(testContentEditable);
|
||||
addLoadEvent(SimpleTest.finish);
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
Загрузка…
Ссылка в новой задаче