Add test
git-svn-id: svn://10.0.0.236/trunk@237347 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
77e9f4537e
commit
94651f6610
@ -91,6 +91,8 @@ _TEST_FILES = test_bug5141.html \
|
||||
test_bug392318.html \
|
||||
test_bug392511.html \
|
||||
test_bug395915.html \
|
||||
test_bug398243.html \
|
||||
formReset.html \
|
||||
bug382113_object.html \
|
||||
test_CrossSiteXHR.html \
|
||||
file_CrossSiteXHR_fail1.xml \
|
||||
|
||||
15
mozilla/content/base/test/formReset.html
Normal file
15
mozilla/content/base/test/formReset.html
Normal file
@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
||||
"http://www.w3.org/TR/REC-html401-19991224/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>Form Elements</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
|
||||
</head>
|
||||
<body>
|
||||
<p>Check me! <input type="checkbox" id="checkbox1"><br>
|
||||
Uncheck me! <input type="checkbox" checked id="checkbox2"><br>
|
||||
<input type="text" size=30 value="Write something here" id="textinput"><br>
|
||||
<textarea id="textarea">Write something here</textarea><br>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
56
mozilla/content/base/test/test_bug398243.html
Normal file
56
mozilla/content/base/test/test_bug398243.html
Normal file
@ -0,0 +1,56 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=398243
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 398243</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=398243">Mozilla Bug 398243</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none">
|
||||
</div>
|
||||
<iframe id="testframe" src="http://localhost:8888/tests/content/base/test/formReset.html"></iframe>
|
||||
<pre id="test">
|
||||
<script class="testbody" type="text/javascript">
|
||||
/** Test for Bug 398243 **/
|
||||
const enteredText1 = "New value for text input";
|
||||
const enteredText2 = "New value for texarea";
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
|
||||
function afterLoad() {
|
||||
var iframeDoc = $("testframe").contentDocument;
|
||||
/* change all the form controls */
|
||||
iframeDoc.getElementById("checkbox1").checked = true;
|
||||
iframeDoc.getElementById("checkbox2").checked = false;
|
||||
iframeDoc.getElementById("textinput").value = enteredText1;
|
||||
iframeDoc.getElementById("textarea").value = enteredText2;
|
||||
|
||||
/* Reload the page */
|
||||
$("testframe").setAttribute("onload", "afterReload()");
|
||||
}
|
||||
|
||||
addLoadEvent(afterLoad);
|
||||
|
||||
function afterReload() {
|
||||
var iframeDoc = $("testframe").contentDocument;
|
||||
is(iframeDoc.getElementById("checkbox1").checked, true,
|
||||
"checkbox #1 state preserved");
|
||||
is(iframeDoc.getElementById("checkbox2").checked, false,
|
||||
"checkbox #2 state preserved");
|
||||
is(iframeDoc.getElementById("textinput").value, enteredText1,
|
||||
"text preserved in <input>");
|
||||
is(iframeDoc.getElementById("textarea").value, enteredText2,
|
||||
"text preserved in <textarea>");
|
||||
|
||||
SimpleTest.finish();
|
||||
}
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user