mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
a25701a3f7
find /files/mozilla/build/d/_tests/testing/mochitest/tests/ | egrep "\.(xhtml|html|xml|js)$" | grep -v SimpleTest | grep -vi mochikit | grep -v simpleThread | grep -v test_ipc_messagemanager_blob.html | grep -v "indexedDB/test" | xargs grep -l Components | xargs grep -L enablePrivilege | perl -pe 's#.*mochitest/tests/##' | xargs perl -p -i.bakkk -e 's/Components\.interfaces(\s|;|\.|\[)/SpecialPowers\.Ci$1/g, s/SpecialPowers\.wrap\(Components\)\.(.)(lasses|tils|nterfaces|esults)/SpecialPowers.C$1/g, s/(?<![\.a-zA-Z])Components/SpecialPowers\.Components/g, s/window\.Components/window\.SpecialPowers\.Components/g'
74 lines
2.3 KiB
HTML
74 lines
2.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=345339
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 345339</title>
|
|
<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=345339">Mozilla Bug 345339</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
</div>
|
|
<iframe id="testframe"
|
|
src="http://mochi.test:8888/tests/content/base/test/345339_iframe.html">
|
|
</iframe>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
/** Test for Bug 345339 **/
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
var filePath;
|
|
|
|
function afterLoad() {
|
|
var iframeDoc = $("testframe").contentDocument;
|
|
|
|
/* change all the form controls */
|
|
iframeDoc.getElementById("select").selectedIndex = 1;
|
|
iframeDoc.getElementById("radio2").checked = true;
|
|
iframeDoc.getElementById("password").value = "123456";
|
|
iframeDoc.getElementById("hidden").value = "gecko";
|
|
|
|
var file = SpecialPowers.Cc["@mozilla.org/file/directory_service;1"]
|
|
.getService(SpecialPowers.Ci.nsIProperties)
|
|
.get("TmpD", SpecialPowers.Ci.nsILocalFile);
|
|
file.append("345339_test.file");
|
|
file.createUnique(SpecialPowers.Ci.nsIFile.NORMAL_FILE_TYPE, 0666);
|
|
filePath = file.path;
|
|
|
|
SpecialPowers.wrap(iframeDoc).getElementById("file").value = filePath;
|
|
|
|
/* Reload the page */
|
|
$("testframe").setAttribute("onload", "afterReload()");
|
|
iframeDoc.location.reload();
|
|
}
|
|
|
|
addLoadEvent(afterLoad);
|
|
|
|
function afterReload() {
|
|
var iframeDoc = $("testframe").contentDocument;
|
|
|
|
is(iframeDoc.getElementById("select").selectedIndex, 1,
|
|
"select element selected index preserved");
|
|
is(iframeDoc.getElementById("radio1").checked, false,
|
|
"radio button #1 value preserved");
|
|
is(iframeDoc.getElementById("radio2").checked, true,
|
|
"radio button #2 value preserved");
|
|
isnot(iframeDoc.getElementById("password").value, "123456",
|
|
"password field value forgotten");
|
|
is(iframeDoc.getElementById("hidden").value, "gecko",
|
|
"hidden field value preserved");
|
|
is(SpecialPowers.wrap(iframeDoc).getElementById("file").value, filePath,
|
|
"file field value preserved");
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|
|
|