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

Side by Side Diff: LayoutTests/fast/events/constructors/media-query-list-event-constructor-expected.txt

Issue 799733002: Use event init dictionaries in core/{css,html} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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
(Empty)
1 This tests the constructor for the MediaQueryListEvent DOM class.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 PASS new MediaQueryListEvent('eventType').bubbles is false
7 PASS new MediaQueryListEvent('eventType').cancelable is false
8 PASS new MediaQueryListEvent('eventType').media is ""
9 PASS new MediaQueryListEvent('eventType').matches is false
10 PASS new MediaQueryListEvent('eventType', { bubbles: true, cancelable: true }).b ubbles is true
11 PASS new MediaQueryListEvent('eventType', { bubbles: true, cancelable: true }).c ancelable is true
12 PASS new MediaQueryListEvent('eventType').media is ""
13 PASS new MediaQueryListEvent('eventType').matches is false
14 PASS new MediaQueryListEvent('eventType', { media: 'string' }).media is "string"
15 PASS new MediaQueryListEvent('eventType', { matches: true }).matches is true
16 PASS successfullyParsed is true
17
18 TEST COMPLETE
19
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698