| Index: webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection.html
|
| ===================================================================
|
| --- webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection.html (revision 12664)
|
| +++ webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection.html (working copy)
|
| @@ -1,27 +0,0 @@
|
| -<HTML>
|
| -<BODY>
|
| -Purpose: To add few select options dynamically and pass the test if the length is correct. Bug#803364.
|
| -<form name="QuickForm">
|
| -<select name="mknm" >
|
| -<option value="">=======
|
| -</option>
|
| -</select>
|
| -</FORM>
|
| -
|
| -<script>
|
| -if (window.layoutTestController)
|
| - layoutTestController.dumpAsText();
|
| -
|
| -document.QuickForm.mknm.options[ 1 ] = new Option( "A");
|
| -document.QuickForm.mknm.options[ 2 ] = new Option( "B");
|
| -if (QuickForm.mknm.options.length =='3') {
|
| - document.write("TEST PASSED");
|
| -}
|
| -else
|
| -{
|
| - document.write("TEST FAILED");
|
| -}
|
| -</script>
|
| -
|
| -</BODY>
|
| -</HTML>
|
|
|