Home | History | Annotate | Download | only in HTMLFormElement

Lines Matching full:select

13 var select, doc1, doc2, str;
17 select = document.createElement("select");
18 var option = select.appendChild(document.createElement("option"));
24 doc1.body.appendChild(select);
25 select.options.namedItem("option");
27 select.removeChild(option);
36 doc1.body.removeChild(select);
37 doc2.body.appendChild(select);
38 shouldBe("typeof select.options.namedItem('option')", "'undefined'");