Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/event-creation-expected.txt

Issue 2821863002: Remove non-standard document.createEvent('WebKitAnimationEvent'). (Closed)
Patch Set: . Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 This tests that document.createEvent is hooked up for all Event interfaces (and alternatives) and creates the right instance. 1 This tests that document.createEvent is hooked up for all Event interfaces (and alternatives) and creates the right instance.
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 document.createEvent('AnimationEvent') instanceof window.AnimationEvent is true 6 PASS document.createEvent('AnimationEvent') instanceof window.AnimationEvent is true
7 PASS document.createEvent('AnimationEvent') instanceof window.Event is true 7 PASS document.createEvent('AnimationEvent') instanceof window.Event is true
8 PASS document.createEvent('AnimationEvent').constructor === window.AnimationEven t is true 8 PASS document.createEvent('AnimationEvent').constructor === window.AnimationEven t is true
9 PASS document.createEvent('Event') instanceof window.Event is true 9 PASS document.createEvent('Event') instanceof window.Event is true
10 PASS document.createEvent('Event').constructor === window.Event is true 10 PASS document.createEvent('Event').constructor === window.Event is true
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 PASS document.createEvent('UIEvENt').constructor === window.UIEvent is true 84 PASS document.createEvent('UIEvENt').constructor === window.UIEvent is true
85 PASS document.createEvent('UIEvents') instanceof window.UIEvent is true 85 PASS document.createEvent('UIEvents') instanceof window.UIEvent is true
86 PASS document.createEvent('UIEvents') instanceof window.Event is true 86 PASS document.createEvent('UIEvents') instanceof window.Event is true
87 PASS document.createEvent('UIEvents').constructor === window.UIEvent is true 87 PASS document.createEvent('UIEvents').constructor === window.UIEvent is true
88 PASS document.createEvent('UIEvENts') instanceof window.UIEvent is true 88 PASS document.createEvent('UIEvENts') instanceof window.UIEvent is true
89 PASS document.createEvent('UIEvENts') instanceof window.Event is true 89 PASS document.createEvent('UIEvENts') instanceof window.Event is true
90 PASS document.createEvent('UIEvENts').constructor === window.UIEvent is true 90 PASS document.createEvent('UIEvENts').constructor === window.UIEvent is true
91 PASS document.createEvent('TransitionEvent') instanceof window.TransitionEvent i s true 91 PASS document.createEvent('TransitionEvent') instanceof window.TransitionEvent i s true
92 PASS document.createEvent('TransitionEvent') instanceof window.Event is true 92 PASS document.createEvent('TransitionEvent') instanceof window.Event is true
93 PASS document.createEvent('TransitionEvent').constructor === window.TransitionEv ent is true 93 PASS document.createEvent('TransitionEvent').constructor === window.TransitionEv ent is true
94 PASS document.createEvent('WebKitAnimationEvent') instanceof window.WebKitAnimat ionEvent is true
95 PASS document.createEvent('WebKitAnimationEvent') instanceof window.Event is tru e
96 PASS document.createEvent('WebKitAnimationEvent').constructor === window.WebKitA nimationEvent is true
97 PASS document.createEvent('WebKitTransitionEvent') instanceof window.WebKitTrans itionEvent is true 94 PASS document.createEvent('WebKitTransitionEvent') instanceof window.WebKitTrans itionEvent is true
98 PASS document.createEvent('WebKitTransitionEvent') instanceof window.Event is tr ue 95 PASS document.createEvent('WebKitTransitionEvent') instanceof window.Event is tr ue
99 PASS document.createEvent('WebKitTransitionEvent').constructor === window.WebKit TransitionEvent is true 96 PASS document.createEvent('WebKitTransitionEvent').constructor === window.WebKit TransitionEvent is true
100 PASS document.createEvent('WheelEvent') instanceof window.WheelEvent is true 97 PASS document.createEvent('WheelEvent') instanceof window.WheelEvent is true
101 PASS document.createEvent('WheelEvent') instanceof window.MouseEvent is true 98 PASS document.createEvent('WheelEvent') instanceof window.MouseEvent is true
102 PASS document.createEvent('WheelEvent') instanceof window.UIEvent is true 99 PASS document.createEvent('WheelEvent') instanceof window.UIEvent is true
103 PASS document.createEvent('WheelEvent') instanceof window.Event is true 100 PASS document.createEvent('WheelEvent') instanceof window.Event is true
104 PASS document.createEvent('WheelEvent').constructor === window.WheelEvent is tru e 101 PASS document.createEvent('WheelEvent').constructor === window.WheelEvent is tru e
105 PASS document.createEvent('StorageEvent') instanceof window.StorageEvent is true 102 PASS document.createEvent('StorageEvent') instanceof window.StorageEvent is true
106 PASS document.createEvent('StorageEvent') instanceof window.Event is true 103 PASS document.createEvent('StorageEvent') instanceof window.Event is true
107 PASS document.createEvent('StorageEvent').constructor === window.StorageEvent is true 104 PASS document.createEvent('StorageEvent').constructor === window.StorageEvent is true
108 PASS document.createEvent('SVGEvents') instanceof window.Event is true 105 PASS document.createEvent('SVGEvents') instanceof window.Event is true
109 PASS document.createEvent('SVGEvents').constructor === window.Event is true 106 PASS document.createEvent('SVGEvents').constructor === window.Event is true
110 PASS document.createEvent('CloseEvent') instanceof window.CloseEvent is true 107 PASS document.createEvent('CloseEvent') instanceof window.CloseEvent is true
111 PASS document.createEvent('CloseEvent') instanceof window.Event is true 108 PASS document.createEvent('CloseEvent') instanceof window.Event is true
112 PASS document.createEvent('CloseEvent').constructor === window.CloseEvent is tru e 109 PASS document.createEvent('CloseEvent').constructor === window.CloseEvent is tru e
113 PASS document.createEvent('TouchEvent') instanceof window.TouchEvent is true 110 PASS document.createEvent('TouchEvent') instanceof window.TouchEvent is true
114 PASS document.createEvent('TouchEvent') instanceof window.Event is true 111 PASS document.createEvent('TouchEvent') instanceof window.Event is true
115 PASS document.createEvent('TouchEvent').constructor === window.TouchEvent is tru e 112 PASS document.createEvent('TouchEvent').constructor === window.TouchEvent is tru e
116 PASS allEventInterfacesCreateEvents is true 113 PASS allEventInterfacesCreateEvents is true
117 PASS successfullyParsed is true 114 PASS successfullyParsed is true
118 115
119 TEST COMPLETE 116 TEST COMPLETE
120 117
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698