| OLD | NEW |
| 1 This test checks construction of objects with custom constructors. | 1 This test checks construction of objects with custom constructors. |
| 2 | 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 | 4 |
| 5 | 5 |
| 6 PASS new Image() is non-null. | 6 PASS new Image() is non-null. |
| 7 PASS new Image().tagName is "IMG" | 7 PASS new Image().tagName is "IMG" |
| 8 PASS new Image().height is 0 | 8 PASS new Image().height is 0 |
| 9 PASS new Image().width is 0 | 9 PASS new Image().width is 0 |
| 10 PASS new Image(100).width is 100 | 10 PASS new Image(100).width is 100 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 PASS new Option('somedata', 'somevalue', true, true).selected is true | 35 PASS new Option('somedata', 'somevalue', true, true).selected is true |
| 36 PASS new Option().outerHTML is "<option></option>" | 36 PASS new Option().outerHTML is "<option></option>" |
| 37 PASS new Option('somedata', 'somevalue', false).outerHTML.replace(/"/g,"'") is "
<option value='somevalue'>somedata</option>" | 37 PASS new Option('somedata', 'somevalue', false).outerHTML.replace(/"/g,"'") is "
<option value='somevalue'>somedata</option>" |
| 38 PASS new Option('somedata', 'somevalue', true).outerHTML.replace(/"/g,"'") is "<
option value='somevalue' selected=''>somedata</option>" | 38 PASS new Option('somedata', 'somevalue', true).outerHTML.replace(/"/g,"'") is "<
option value='somevalue' selected=''>somedata</option>" |
| 39 PASS new Audio() is non-null. | 39 PASS new Audio() is non-null. |
| 40 PASS new Audio().tagName is "AUDIO" | 40 PASS new Audio().tagName is "AUDIO" |
| 41 PASS new Audio().src is "" | 41 PASS new Audio().src is "" |
| 42 PASS new Audio().preload is "auto" | 42 PASS new Audio().preload is "auto" |
| 43 PASS new Audio('http://127.0.0.1/someurl').src is "http://127.0.0.1/someurl" | 43 PASS new Audio('http://127.0.0.1/someurl').src is "http://127.0.0.1/someurl" |
| 44 PASS new Audio('http://127.0.0.1/someurl').preload is "auto" | 44 PASS new Audio('http://127.0.0.1/someurl').preload is "auto" |
| 45 PASS successfullyParsed is true |
| 45 | 46 |
| 47 TEST COMPLETE |
| 48 |
| OLD | NEW |