2008-12-12 11:25:22 -08:00
|
|
|
<!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"
|
2010-03-12 13:53:36 -08:00
|
|
|
src="http://mochi.test:8888/tests/content/base/test/345339_iframe.html">
|
2008-12-12 11:25:22 -08:00
|
|
|
</iframe>
|
|
|
|
<pre id="test">
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
/** Test for Bug 345339 **/
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
2010-09-05 11:00:05 -07:00
|
|
|
var filePath;
|
|
|
|
|
2008-12-12 11:25:22 -08:00
|
|
|
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";
|
|
|
|
|
2012-09-24 05:46:29 -07:00
|
|
|
var file = SpecialPowers.Cc["@mozilla.org/file/directory_service;1"]
|
|
|
|
.getService(SpecialPowers.Ci.nsIProperties)
|
|
|
|
.get("TmpD", SpecialPowers.Ci.nsILocalFile);
|
2010-09-05 11:00:05 -07:00
|
|
|
file.append("345339_test.file");
|
2012-09-24 05:46:29 -07:00
|
|
|
file.createUnique(SpecialPowers.Ci.nsIFile.NORMAL_FILE_TYPE, 0666);
|
2010-09-05 11:00:05 -07:00
|
|
|
filePath = file.path;
|
|
|
|
|
2012-08-03 13:19:54 -07:00
|
|
|
SpecialPowers.wrap(iframeDoc).getElementById("file").value = filePath;
|
2008-12-12 11:25:22 -08:00
|
|
|
|
|
|
|
/* 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");
|
2012-08-03 13:19:54 -07:00
|
|
|
is(SpecialPowers.wrap(iframeDoc).getElementById("file").value, filePath,
|
2008-12-12 11:25:22 -08:00
|
|
|
"file field value preserved");
|
|
|
|
|
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|