OLD | NEW |
1 CONSOLE WARNING: Resource requests whose URLs contain raw newline characters are
deprecated, and may be blocked in M60, around August 2017. Please remove newlin
es from places like element attribute values in order to continue loading those
resources. See https://www.chromestatus.com/features/5735596811091968 for more d
etails. | |
2 This tests the constructor for the TrackEvent DOM class. | 1 This tests the constructor for the TrackEvent DOM class. |
3 | 2 |
4 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
". |
5 | 4 |
6 | 5 |
7 | 6 |
8 *** No initializer passed *** | 7 *** No initializer passed *** |
9 PASS new TrackEvent('TrackEvent').bubbles is false | 8 PASS new TrackEvent('TrackEvent').bubbles is false |
10 PASS new TrackEvent('TrackEvent').cancelable is false | 9 PASS new TrackEvent('TrackEvent').cancelable is false |
11 PASS new TrackEvent('TrackEvent').track is null | 10 PASS new TrackEvent('TrackEvent').track is null |
(...skipping 19 matching lines...) Expand all Loading... |
31 PASS new TrackEvent('TrackEvent', { bubbles: true, cancelable: true, track: trac
kElement.track }).cancelable is true | 30 PASS new TrackEvent('TrackEvent', { bubbles: true, cancelable: true, track: trac
kElement.track }).cancelable is true |
32 PASS new TrackEvent('TrackEvent', { track: trackElement.track }).track is trackE
lement.track | 31 PASS new TrackEvent('TrackEvent', { track: trackElement.track }).track is trackE
lement.track |
33 | 32 |
34 *** Initialize 'track' with valid track object *** | 33 *** Initialize 'track' with valid track object *** |
35 PASS new TrackEvent('TrackEvent', { track: trackElement.track }).track is trackE
lement.track | 34 PASS new TrackEvent('TrackEvent', { track: trackElement.track }).track is trackE
lement.track |
36 | 35 |
37 PASS successfullyParsed is true | 36 PASS successfullyParsed is true |
38 | 37 |
39 TEST COMPLETE | 38 TEST COMPLETE |
40 | 39 |
OLD | NEW |