| OLD | NEW |
| 1 CONSOLE WARNING: 'SVGZoomEvent' is deprecated and will be removed in M52, around
July 2016. See https://www.chromestatus.com/features/5760883808534528 for more
details. | 1 CONSOLE WARNING: 'SVGZoomEvent' is deprecated and will be removed in M52, around
July 2016. See https://www.chromestatus.com/features/5760883808534528 for more
details. |
| 2 This tests that document.createEvent is hooked up for all Event interfaces (and
alternatives) and creates the right instance. | 2 This tests that document.createEvent is hooked up for all Event interfaces (and
alternatives) and creates the right instance. |
| 3 | 3 |
| 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 5 | 5 |
| 6 | 6 |
| 7 PASS document.createEvent('AnimationEvent') instanceof window.AnimationEvent is
true | 7 PASS document.createEvent('AnimationEvent') instanceof window.AnimationEvent is
true |
| 8 PASS document.createEvent('AnimationEvent') instanceof window.Event is true | 8 PASS document.createEvent('AnimationEvent') instanceof window.Event is true |
| 9 PASS document.createEvent('AnimationEvent').constructor === window.AnimationEven
t is true | 9 PASS document.createEvent('AnimationEvent').constructor === window.AnimationEven
t is true |
| 10 PASS document.createEvent('Event') instanceof window.Event is true | 10 PASS document.createEvent('Event') instanceof window.Event is true |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 PASS document.createEvent('SVGZoomEvent').constructor === window.SVGZoomEvent is
true | 116 PASS document.createEvent('SVGZoomEvent').constructor === window.SVGZoomEvent is
true |
| 117 PASS document.createEvent('SVGZoomEvents') instanceof window.SVGZoomEvent is tru
e | 117 PASS document.createEvent('SVGZoomEvents') instanceof window.SVGZoomEvent is tru
e |
| 118 PASS document.createEvent('SVGZoomEvents') instanceof window.Event is true | 118 PASS document.createEvent('SVGZoomEvents') instanceof window.Event is true |
| 119 PASS document.createEvent('SVGZoomEvents').constructor === window.SVGZoomEvent i
s true | 119 PASS document.createEvent('SVGZoomEvents').constructor === window.SVGZoomEvent i
s true |
| 120 PASS document.createEvent('CloseEvent') instanceof window.CloseEvent is true | 120 PASS document.createEvent('CloseEvent') instanceof window.CloseEvent is true |
| 121 PASS document.createEvent('CloseEvent') instanceof window.Event is true | 121 PASS document.createEvent('CloseEvent') instanceof window.Event is true |
| 122 PASS document.createEvent('CloseEvent').constructor === window.CloseEvent is tru
e | 122 PASS document.createEvent('CloseEvent').constructor === window.CloseEvent is tru
e |
| 123 PASS document.createEvent('TouchEvent') instanceof window.TouchEvent is true | 123 PASS document.createEvent('TouchEvent') instanceof window.TouchEvent is true |
| 124 PASS document.createEvent('TouchEvent') instanceof window.Event is true | 124 PASS document.createEvent('TouchEvent') instanceof window.Event is true |
| 125 PASS document.createEvent('TouchEvent').constructor === window.TouchEvent is tru
e | 125 PASS document.createEvent('TouchEvent').constructor === window.TouchEvent is tru
e |
| 126 PASS document.createEvent('AutocompleteErrorEvent') instanceof window.Autocomple
teErrorEvent is true | |
| 127 PASS document.createEvent('AutocompleteErrorEvent') instanceof window.Event is t
rue | |
| 128 PASS document.createEvent('AutocompleteErrorEvent').constructor === window.Autoc
ompleteErrorEvent is true | |
| 129 PASS allEventInterfacesCreateEvents is true | 126 PASS allEventInterfacesCreateEvents is true |
| 130 PASS successfullyParsed is true | 127 PASS successfullyParsed is true |
| 131 | 128 |
| 132 TEST COMPLETE | 129 TEST COMPLETE |
| 133 | 130 |
| OLD | NEW |