5 var x
= new Option('t','v');
6 document
.getElementById('result').innerHTML
= "Test Passed. <BR/> Index for option element with no corresponding select is: " + x
.index
;
10 <body onload=
"Crash()">
11 This test makes sure we don't crash when trying to get the index of an option element that has no corresponding select element.
12 <div id=
"result">Test Failed
</div>