| <script src="../../resources/js-test-pre.js"></script> |
| description("Tests to ensure that attributes are not set when an exceptions is raised while converting argument to JSValue."); |
| function setName(select) { |
| throw new Error("error"); |
| select.name = stringLike;; |
| function setSelectedIndex(select) { |
| throw new Error("error"); |
| select.selectedIndex = integerLike;; |
| var select = document.getElementById("select"); |
| shouldBe('select.name', '"select"'); |
| setSelectedIndex(select); |
| shouldBe('select.selectedIndex', '1'); |
| <body onload="runTest()"> |
| <select id="select" name="select"> |
| <option value="value1">Value 1</option> |
| <option value="value2" selected>Value 2</option> |
| <option value="value3">Value 3</option> |
| <script src="../../resources/js-test-pre.js"></script> |