OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html lang="en"> |
| 3 <head> |
| 4 <title>Test for return value of DISP_E_BADINDEX</title> |
| 5 <script src="test-bad-index.js"></script> |
| 6 </head> |
| 7 |
| 8 <body onload="init()"> |
| 9 <h1>Test for return value of DISP_E_BADINDEX</h1> |
| 10 <ul> |
| 11 <li> |
| 12 Call <code>UserSettings().TestBadIndex(0)</code>. |
| 13 Should return normally. |
| 14 Result = <span id="result1"></span> |
| 15 </li> |
| 16 <li> |
| 17 Call <code>UserSettings().TestBadIndex(1)</code>. |
| 18 Should throw an exception. |
| 19 Result = <span id="result2"></span> |
| 20 </li> |
| 21 </ul> |
| 22 <h1 id="errorMessage" style="background-color:red;"></h1> |
| 23 <h1 id="indexException" style="background-color:green;"></h1> |
| 24 </body> |
| 25 </html> |
OLD | NEW |