| Index: LayoutTests/fast/dom/HTMLSelectElement/select-selectedIndex.html
|
| diff --git a/LayoutTests/fast/dom/HTMLSelectElement/select-selectedIndex.html b/LayoutTests/fast/dom/HTMLSelectElement/select-selectedIndex.html
|
| index 2c3dcfdf07586185ae2446440b3ac4a7703095aa..9e5e7b8dcfa53eaf1b5b104cac27cc3b7bb84744 100644
|
| --- a/LayoutTests/fast/dom/HTMLSelectElement/select-selectedIndex.html
|
| +++ b/LayoutTests/fast/dom/HTMLSelectElement/select-selectedIndex.html
|
| @@ -14,7 +14,7 @@ reset(mySelect);
|
| var i = 0;
|
|
|
| debug((++i) + ") setting length to a negative length");
|
| -shouldThrow("mySelect.options.length = -1;");
|
| +mySelect.options.length = -1;
|
| shouldBe("mySelect.options.length", "2");
|
| shouldBe("mySelect.selectedIndex", "1");
|
|
|
|
|