| <script src="../../resources/js-test-pre.js"></script> |
| <option id="o1"> text </option> |
| <option id="o2" value="value"> text </option> |
| <option id="o3" label="label"> text </option> |
| <option id="o4" value="value" label="label">text</option> |
| description('Test for .value and .label of OPTION element'); |
| var o1 = document.getElementById('o1'); |
| shouldBe('o1.value', '"newValue"'); |
| shouldBe('o1.label', '"newLabel"'); |
| var o2 = document.getElementById('o2'); |
| shouldBe('o2.value', '"newValue"'); |
| shouldBe('o2.label', '"newLabel"'); |
| var o3 = document.getElementById('o3'); |
| shouldBe('o3.value', '"newValue"'); |
| shouldBe('o3.label', '"newLabel"'); |
| var o4 = document.getElementById('o4'); |
| shouldBe('o4.value', '"newValue"'); |
| shouldBe('o4.label', '"newLabel"'); |
| <script src="../../resources/js-test-post.js"></script> |