mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
f1fc41b0e5
This is more likely to be correct, and a necessary step in case we ever want to move to Object.is. This keeps ise as an alias for is, and introduces is_loosely for the old behaviour.
30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Test</title>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
</head>
|
|
<body>
|
|
<form id="form1">
|
|
<input id="input1" type="input" name="input" value="1"/>
|
|
<input id="input2" type="input" name="input" value="2"/>
|
|
<input id="input3" type="input" name="input" value="3"/>
|
|
</form>
|
|
<script>
|
|
var input1 = document.getElementById("input1");
|
|
var input2 = document.getElementById("input2");
|
|
var form1 = document.getElementById("form1");
|
|
form1.insertBefore(input2, input1);
|
|
|
|
is(form1.elements["input"].length, 3, "Form 1 'input' has the correct length");
|
|
is(form1.elements["input"][0].value, "2", "Form 1 element 1 is correct");
|
|
is(form1.elements["input"][1].value, "1", "Form 1 element 2 is correct");
|
|
is(form1.elements["input"][2].value, "3", "Form 1 element 3 is correct");
|
|
|
|
is(form1.elements["input"][0].id, "input2", "Form 1 element 1 id is correct");
|
|
is(form1.elements["input"][1].id, "input1", "Form 1 element 2 id is correct");
|
|
is(form1.elements["input"][2].id, "input3", "Form 1 element 3 id is correct");
|
|
</script>
|
|
</body>
|
|
</html>
|