<!
DOCTYPE HTML >
<
html >
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=42976
-->
<
head >
<
title >Test for Bug 42976</
title >
<
script src=
"/tests/SimpleTest/SimpleTest.js" ></
script >
<
link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css" />
</
head >
<
body onload=
"runTest()" >
<a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=42976 " >Mozilla
Bug 42976</a>
<p id="display" ></p>
<div id="content" >
<iframe id=specialtest srcdoc=" http://www.mozilla.org'>asdf"
></iframe >;
<iframe id=htmlquirks srcdoc="
" ></iframe >
<iframe id=htmlstd srcdoc="
" ></iframe >
<iframe id=textplain srcdoc=" asdf%0Azxcv%0A" ></iframe >
<iframe id=xhtmlstd srcdoc="http://www.w3.org/1999/xhtml'>
" ></iframe >
<iframe id=xmlstd srcdoc="http://www.w3.org/2000/svg" width='300' height='300'>Hello, World! Hello, World! " ></iframe >
</div >
<pre id="test" >
<script class="testbody" type="text/javascript" >
SimpleTest.waitForExplicitFinish();
function runTest() {
var iframes = document.getElementsByTagName("iframe" );
for (var i = 1; i < iframes.length; i++) {
var doc = iframes[i].contentDocument;
var clonefalse = doc.cloneNode(false);
// doc.compatMode
ok(doc.compatMode == clonefalse.compatMode, "compatMode not preserved correctly; " + iframes[i].id);
// doc.contentType
ok(doc.contentType == clonefalse.contentType, "contentType not preserved correctly; " + iframes[i].id);
// doc.characterSet
ok(doc.characterSet == clonefalse.characterSet, "charset not preserved correctly; " + iframes[i].id);
// innerHTML+tag case test
var clonetrue = doc.cloneNode(true);
doc.documentElement.firstChild.innerHTML="
" ;
clonetrue.documentElement.firstChild.innerHTML="
" ;
ok(doc.documentElement.innerHTML == clonetrue.documentElement.innerHTML,
"innerHTML not preserved correctly; " + iframes[i].id);
}
// A couple of tests that don't quite fit in the framework.
var doc = iframes[0].contentDocument;
// Setting document.dir does nothing in a document without an <html > element
doc.dir ="rtl" ;
var docclone = doc.cloneNode(false);
// doc.dir
ok(docclone.dir == "" , "dir set on doc without html element" );
// document.querySelectorAll(":lang(ja)" )
docclone.appendChild(docclone.createElement("html" ));
ok(docclone.querySelectorAll(":lang(ja)" ).length == 1, "lang not preserved correctly" );
docclone.documentElement.innerHTML="asf "
;
ok(docclone.getElementById('a' ).href == "http://www.mozilla.org/a.html " ,
"base not preserved correctly" );
// Now that we have an <html > element, deep cloning preserves document.dir
docclone.dir ="rtl" ;
var cloneclone = docclone.cloneNode(true);
// doc.dir
ok(cloneclone.dir == "rtl" , "dir not preserved correctly" );
SimpleTest.finish();
}
</script >
</pre >
</body >
</html >
Messung V0.5 C=94 H=93 G=93
¤ Dauer der Verarbeitung: 0.3 Sekunden
¤
*© Formatika GbR, Deutschland