Home | History | Annotate | Download | only in resources

Lines Matching defs:value

4 var value;
7 value = document.createElement("DIV");
8 shouldBe("select1.options.remove(value)", "undefined");
14 value = "o";
15 shouldBe("select1.options.remove(value)", "undefined");
21 value = 3.14;
22 shouldBe("select1.options.remove(value)", "undefined");
28 value = true;
29 shouldBe("select1.options.remove(value)", "undefined");
35 value = undefined;
36 shouldBe("select1.options.remove(value)", "undefined");
42 value = null;
43 shouldBe("select1.options.remove(value)", "undefined");
49 value = -1/0;
50 shouldBe("select1.options.remove(value)", "undefined");
56 value = 0/0;
57 shouldBe("select1.options.remove(value)", "undefined");
63 value = 1/0;
64 shouldBe("select1.options.remove(value)", "undefined");
111 value = document.createElement("DIV");
112 shouldBe("select2.options.remove(value)", "undefined");
115 shouldBe("select2.options[0].value", "'B'");
119 value = "o";
120 shouldBe("select2.options.remove(value)", "undefined");
123 shouldBe("select2.options[0].value", "'C'");
127 value = 3.14;
128 shouldBe("select2.options.remove(value)", "undefined");
131 shouldBe("select2.options[3].value", "'G'");
135 value = true;
136 shouldBe("select2.options.remove(value)", "undefined");
139 shouldBe("select2.options[1].value", "'E'");
143 value = false;
144 shouldBe("select2.options.remove(value)", "undefined");
147 shouldBe("select2.options[1].value", "'G'");
151 value = undefined;
152 shouldBe("select2.options.remove(value)", "undefined");
155 shouldBe("select2.options[0].value", "'G'");
159 value = null;
160 shouldBe("select2.options.remove(value)", "undefined");
163 shouldBe("select2.options[0].value", "'H'");
167 value = -1/0;
168 shouldBe("select2.options.remove(value)", "undefined");
171 shouldBe("select2.options[0].value", "'I'");
175 value = 0/0;
176 shouldBe("select2.options.remove(value)", "undefined");
179 shouldBe("select2.options[0].value", "'J'");
183 value = 1/0;
184 shouldBe("select2.options.remove(value)", "undefined");
187 shouldBe("select2.options[0].value", "'K'");
194 shouldBe("select2.options[0].value", "'L'");
201 shouldBe("select2.options[0].value", "'M'");
208 shouldBe("select2.options[2].value", "'O'");
215 shouldBe("select2.options[3].value", "'P'");
222 shouldBe("select2.options[0].value", "'N'");
229 shouldBe("select2.options[1].value", "'P'");