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

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

Issue 1681923002: Remove XMLHttpRequestProgressEvent (position and totalSize) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update tests Created 4 years, 10 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 PASS document.createEvent('WebKitAnimationEvent') instanceof window.Event is tru e 98 PASS document.createEvent('WebKitAnimationEvent') instanceof window.Event is tru e
99 PASS document.createEvent('WebKitAnimationEvent').constructor === window.WebKitA nimationEvent is true 99 PASS document.createEvent('WebKitAnimationEvent').constructor === window.WebKitA nimationEvent is true
100 PASS document.createEvent('WebKitTransitionEvent') instanceof window.WebKitTrans itionEvent is true 100 PASS document.createEvent('WebKitTransitionEvent') instanceof window.WebKitTrans itionEvent is true
101 PASS document.createEvent('WebKitTransitionEvent') instanceof window.Event is tr ue 101 PASS document.createEvent('WebKitTransitionEvent') instanceof window.Event is tr ue
102 PASS document.createEvent('WebKitTransitionEvent').constructor === window.WebKit TransitionEvent is true 102 PASS document.createEvent('WebKitTransitionEvent').constructor === window.WebKit TransitionEvent is true
103 PASS document.createEvent('WheelEvent') instanceof window.WheelEvent is true 103 PASS document.createEvent('WheelEvent') instanceof window.WheelEvent is true
104 PASS document.createEvent('WheelEvent') instanceof window.MouseEvent is true 104 PASS document.createEvent('WheelEvent') instanceof window.MouseEvent is true
105 PASS document.createEvent('WheelEvent') instanceof window.UIEvent is true 105 PASS document.createEvent('WheelEvent') instanceof window.UIEvent is true
106 PASS document.createEvent('WheelEvent') instanceof window.Event is true 106 PASS document.createEvent('WheelEvent') instanceof window.Event is true
107 PASS document.createEvent('WheelEvent').constructor === window.WheelEvent is tru e 107 PASS document.createEvent('WheelEvent').constructor === window.WheelEvent is tru e
108 PASS document.createEvent('XMLHttpRequestProgressEvent') instanceof window.XMLHt tpRequestProgressEvent is true
109 PASS document.createEvent('XMLHttpRequestProgressEvent') instanceof window.Progr essEvent is true
110 PASS document.createEvent('XMLHttpRequestProgressEvent') instanceof window.Event is true
111 PASS document.createEvent('XMLHttpRequestProgressEvent').constructor === window. XMLHttpRequestProgressEvent is true
112 PASS document.createEvent('StorageEvent') instanceof window.StorageEvent is true 108 PASS document.createEvent('StorageEvent') instanceof window.StorageEvent is true
113 PASS document.createEvent('StorageEvent') instanceof window.Event is true 109 PASS document.createEvent('StorageEvent') instanceof window.Event is true
114 PASS document.createEvent('StorageEvent').constructor === window.StorageEvent is true 110 PASS document.createEvent('StorageEvent').constructor === window.StorageEvent is true
115 PASS document.createEvent('SVGEvents') instanceof window.Event is true 111 PASS document.createEvent('SVGEvents') instanceof window.Event is true
116 PASS document.createEvent('SVGEvents').constructor === window.Event is true 112 PASS document.createEvent('SVGEvents').constructor === window.Event is true
117 PASS document.createEvent('SVGZoomEvent') instanceof window.SVGZoomEvent is true 113 PASS document.createEvent('SVGZoomEvent') instanceof window.SVGZoomEvent is true
118 PASS document.createEvent('SVGZoomEvent') instanceof window.Event is true 114 PASS document.createEvent('SVGZoomEvent') instanceof window.Event is true
119 PASS document.createEvent('SVGZoomEvent').constructor === window.SVGZoomEvent is true 115 PASS document.createEvent('SVGZoomEvent').constructor === window.SVGZoomEvent is true
120 PASS document.createEvent('SVGZoomEvents') instanceof window.SVGZoomEvent is tru e 116 PASS document.createEvent('SVGZoomEvents') instanceof window.SVGZoomEvent is tru e
121 PASS document.createEvent('SVGZoomEvents') instanceof window.Event is true 117 PASS document.createEvent('SVGZoomEvents') instanceof window.Event is true
122 PASS document.createEvent('SVGZoomEvents').constructor === window.SVGZoomEvent i s true 118 PASS document.createEvent('SVGZoomEvents').constructor === window.SVGZoomEvent i s true
123 PASS document.createEvent('CloseEvent') instanceof window.CloseEvent is true 119 PASS document.createEvent('CloseEvent') instanceof window.CloseEvent is true
124 PASS document.createEvent('CloseEvent') instanceof window.Event is true 120 PASS document.createEvent('CloseEvent') instanceof window.Event is true
125 PASS document.createEvent('CloseEvent').constructor === window.CloseEvent is tru e 121 PASS document.createEvent('CloseEvent').constructor === window.CloseEvent is tru e
126 PASS document.createEvent('TouchEvent') instanceof window.TouchEvent is true 122 PASS document.createEvent('TouchEvent') instanceof window.TouchEvent is true
127 PASS document.createEvent('TouchEvent') instanceof window.Event is true 123 PASS document.createEvent('TouchEvent') instanceof window.Event is true
128 PASS document.createEvent('TouchEvent').constructor === window.TouchEvent is tru e 124 PASS document.createEvent('TouchEvent').constructor === window.TouchEvent is tru e
129 PASS document.createEvent('AutocompleteErrorEvent') instanceof window.Autocomple teErrorEvent is true 125 PASS document.createEvent('AutocompleteErrorEvent') instanceof window.Autocomple teErrorEvent is true
130 PASS document.createEvent('AutocompleteErrorEvent') instanceof window.Event is t rue 126 PASS document.createEvent('AutocompleteErrorEvent') instanceof window.Event is t rue
131 PASS document.createEvent('AutocompleteErrorEvent').constructor === window.Autoc ompleteErrorEvent is true 127 PASS document.createEvent('AutocompleteErrorEvent').constructor === window.Autoc ompleteErrorEvent is true
132 PASS allEventInterfacesCreateEvents is true 128 PASS allEventInterfacesCreateEvents is true
133 PASS successfullyParsed is true 129 PASS successfullyParsed is true
134 130
135 TEST COMPLETE 131 TEST COMPLETE
136 132
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698