mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
indexed getter of form elements
This commit is contained in:
parent
3fa0dca3a3
commit
4bb88432b2
5 changed files with 36 additions and 6 deletions
|
@ -36058,6 +36058,12 @@
|
|||
"url": "/html/semantics/embedded-content/the-iframe-element/same_origin_parentage.html"
|
||||
}
|
||||
],
|
||||
"html/semantics/forms/the-form-element/form-indexed-element.html": [
|
||||
{
|
||||
"path": "html/semantics/forms/the-form-element/form-indexed-element.html",
|
||||
"url": "/html/semantics/forms/the-form-element/form-indexed-element.html"
|
||||
}
|
||||
],
|
||||
"url/url-domainToUnicode.html": [
|
||||
{
|
||||
"path": "url/url-domainToUnicode.html",
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
[031.html]
|
||||
type: testharness
|
||||
[ scheduler: focus and blur events]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<!doctype html>
|
||||
<meta charset="utf-8">
|
||||
<title>form.elements: indexed</title>
|
||||
<link rel="author" title="Ivan.Yang" href="mailto:jsyangwenjie@gmail.com">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<div id="log"></div>
|
||||
<div id="test">
|
||||
<form id=form>
|
||||
<input type="radio" name="radio1" id="r1" value=1>
|
||||
<input type="radio" name="radio2" id="r2" value=2>
|
||||
</form>
|
||||
</div>
|
||||
<script>
|
||||
test(function() {
|
||||
var form = document.getElementById("form");
|
||||
assert_equals(form[0], document.getElementById("r1"));
|
||||
assert_equals(form[1], document.getElementById("r2"));
|
||||
assert_equals(form[2], undefined);
|
||||
assert_equals(form[-1], undefined);
|
||||
}, "form.elements should be accessed correctly by index")
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue