| OLD | NEW |
| (Empty) | |
| 1 This tests the constructor for the MediaQueryListEvent DOM class. |
| 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 |
| 5 |
| 6 PASS new MediaQueryListEvent('eventType').bubbles is false |
| 7 PASS new MediaQueryListEvent('eventType').cancelable is false |
| 8 PASS new MediaQueryListEvent('eventType').media is "" |
| 9 PASS new MediaQueryListEvent('eventType').matches is false |
| 10 PASS new MediaQueryListEvent('eventType', { bubbles: true, cancelable: true }).b
ubbles is true |
| 11 PASS new MediaQueryListEvent('eventType', { bubbles: true, cancelable: true }).c
ancelable is true |
| 12 PASS new MediaQueryListEvent('eventType').media is "" |
| 13 PASS new MediaQueryListEvent('eventType').matches is false |
| 14 PASS new MediaQueryListEvent('eventType', { media: 'string' }).media is "string" |
| 15 PASS new MediaQueryListEvent('eventType', { matches: true }).matches is true |
| 16 PASS successfullyParsed is true |
| 17 |
| 18 TEST COMPLETE |
| 19 |
| OLD | NEW |