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

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

Issue 14020004: Remove the remains of unused guards. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years, 7 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('Event') instanceof window.Event is true 6 PASS document.createEvent('Event') instanceof window.Event is true
7 PASS document.createEvent('Event').constructor === window.Event is true 7 PASS document.createEvent('Event').constructor === window.Event is true
8 PASS document.createEvent('Events') instanceof window.Event is true 8 PASS document.createEvent('Events') instanceof window.Event is true
9 PASS document.createEvent('Events').constructor === window.Event is true 9 PASS document.createEvent('Events').constructor === window.Event is true
10 PASS document.createEvent('HTMLEvents') instanceof window.Event is true 10 PASS document.createEvent('HTMLEvents') instanceof window.Event is true
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 PASS document.createEvent('SVGEvents').constructor === window.Event is true 96 PASS document.createEvent('SVGEvents').constructor === window.Event is true
97 PASS document.createEvent('SVGZoomEvent') instanceof window.SVGZoomEvent is true 97 PASS document.createEvent('SVGZoomEvent') instanceof window.SVGZoomEvent is true
98 PASS document.createEvent('SVGZoomEvent') instanceof window.Event is true 98 PASS document.createEvent('SVGZoomEvent') instanceof window.Event is true
99 PASS document.createEvent('SVGZoomEvent').constructor === window.SVGZoomEvent is true 99 PASS document.createEvent('SVGZoomEvent').constructor === window.SVGZoomEvent is true
100 PASS document.createEvent('SVGZoomEvents') instanceof window.SVGZoomEvent is tru e 100 PASS document.createEvent('SVGZoomEvents') instanceof window.SVGZoomEvent is tru e
101 PASS document.createEvent('SVGZoomEvents') instanceof window.Event is true 101 PASS document.createEvent('SVGZoomEvents') instanceof window.Event is true
102 PASS document.createEvent('SVGZoomEvents').constructor === window.SVGZoomEvent i s true 102 PASS document.createEvent('SVGZoomEvents').constructor === window.SVGZoomEvent i s true
103 PASS document.createEvent('CloseEvent') instanceof window.CloseEvent is true 103 PASS document.createEvent('CloseEvent') instanceof window.CloseEvent is true
104 PASS document.createEvent('CloseEvent') instanceof window.Event is true 104 PASS document.createEvent('CloseEvent') instanceof window.Event is true
105 PASS document.createEvent('CloseEvent').constructor === window.CloseEvent is tru e 105 PASS document.createEvent('CloseEvent').constructor === window.CloseEvent is tru e
106 PASS document.createEvent('TouchEvent') instanceof window.TouchEvent is true
107 PASS document.createEvent('TouchEvent') instanceof window.Event is true
108 PASS document.createEvent('TouchEvent').constructor === window.TouchEvent is tru e
109 PASS document.createEvent('AutocompleteErrorEvent') instanceof window.Autocomple teErrorEvent is true
110 PASS document.createEvent('AutocompleteErrorEvent') instanceof window.Event is t rue
111 PASS document.createEvent('AutocompleteErrorEvent').constructor === window.Autoc ompleteErrorEvent is true
106 PASS allEventInterfacesCreateEvents is true 112 PASS allEventInterfacesCreateEvents is true
107 PASS successfullyParsed is true 113 PASS successfullyParsed is true
108 114
109 TEST COMPLETE 115 TEST COMPLETE
110 116
OLDNEW
« no previous file with comments | « LayoutTests/fast/events/event-creation.html ('k') | LayoutTests/fast/events/touch/script-tests/tap-highlight-color.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698