| This tests that options elements are accessible by name from both a select element and the options collection, per HTML5. |
| |
| On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". |
| |
| |
| Confirm that the option named 'test' is accessible from the select element |
| FAIL select1.test.toString() should be [object HTMLOptionElement]. Threw exception TypeError: Result of expression 'select1.test' [undefined] is not an object. |
| FAIL select1.test.value should be Value. Threw exception TypeError: Result of expression 'select1.test' [undefined] is not an object. |
| Confirm that the option named 'test' is accessible from the options collection |
| PASS select1.options.test.toString() is "[object HTMLOptionElement]" |
| PASS select1.options.test.value is "Value" |
| Confirm that both options named 'test' are accessible from the select element |
| FAIL select2.test.length should be 2. Threw exception TypeError: Result of expression 'select2.test' [undefined] is not an object. |
| FAIL select2.test.toString() should be [object Collection]. Threw exception TypeError: Result of expression 'select2.test' [undefined] is not an object. |
| FAIL select2.test[0].value should be Value1. Threw exception TypeError: Result of expression 'select2.test' [undefined] is not an object. |
| FAIL select2.test[1].value should be Value2. Threw exception TypeError: Result of expression 'select2.test' [undefined] is not an object. |
| Confirm that both options named 'test' are accessible from the options collection |
| PASS select2.options.test.length is 2 |
| PASS select2.options.test.toString() is "[object Collection]" |
| PASS select2.options.test[0].value is "Value1" |
| PASS select2.options.test[1].value is "Value2" |
| PASS successfullyParsed is true |
| |
| TEST COMPLETE |
| |