Bug 841941 - Add a mochitest to check that the order in which @value/@min/@max/@step are specified in markup makes no difference to the value that <input type=range> will be given. r=mounir

This commit is contained in:
Jonathan Watt 2013-04-17 11:49:33 +01:00
parent 22436b036a
commit efae06a65b
2 changed files with 49 additions and 0 deletions

View File

@ -18,6 +18,7 @@ MOCHITEST_FILES = \
test_input_attributes_reflection.html \
test_input_list_attribute.html \
test_input_email.html \
test_input_range_attr_order.html \
test_input_range_key_events.html \
test_input_range_mouse_and_touch_events.html \
test_input_url.html \

View File

@ -0,0 +1,48 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=841941
-->
<head>
<title>Test @min/@max/@step order for range</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<meta charset="UTF-8">
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=841941">Mozilla Bug 841941</a>
<p id="display"></p>
<div id="content">
<input type=range value=2 max=1.5 step=0.5>
<input type=range value=2 step=0.5 max=1.5>
<input type=range value=2 max=1.5 step=0.5>
<input type=range value=2 step=0.5 max=1.5>
</div>
<pre id="test">
<script type="application/javascript">
/**
* Test for Bug 841941
* This test checks that the order in which @min/@max/@step are specified in
* markup makes no difference to the value that <input type=range> will be
* given. Basically this checks that sanitization of the value does not occur
* until after the parser has finished with the element.
*/
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() {
test();
SimpleTest.finish();
});
function test() {
var ranges = document.querySelectorAll("input[type=range]");
for (var i = 0; i < ranges.length; i++) {
is(ranges.item(i).value, "1.5", "Check sanitization order for range " + i);
}
}
</script>
</pre>
</body>
</html>