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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/constructors/track-event-constructor-expected.txt

Issue 2794303002: Deprecate resource requests whose URLs contain raw newlines. (Closed)
Patch Set: Rebase. 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 CONSOLE WARNING: Resource requests whose URLs contain raw newline characters are deprecated, and may be blocked in M60, around August 2017. Please remove newlin es from places like element attribute values in order to continue loading those resources. See https://www.chromestatus.com/features/5735596811091968 for more d etails.
1 This tests the constructor for the TrackEvent DOM class. 2 This tests the constructor for the TrackEvent DOM class.
2 3
3 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 ".
4 5
5 6
6 7
7 *** No initializer passed *** 8 *** No initializer passed ***
8 PASS new TrackEvent('TrackEvent').bubbles is false 9 PASS new TrackEvent('TrackEvent').bubbles is false
9 PASS new TrackEvent('TrackEvent').cancelable is false 10 PASS new TrackEvent('TrackEvent').cancelable is false
10 PASS new TrackEvent('TrackEvent').track is null 11 PASS new TrackEvent('TrackEvent').track is null
(...skipping 19 matching lines...) Expand all
30 PASS new TrackEvent('TrackEvent', { bubbles: true, cancelable: true, track: trac kElement.track }).cancelable is true 31 PASS new TrackEvent('TrackEvent', { bubbles: true, cancelable: true, track: trac kElement.track }).cancelable is true
31 PASS new TrackEvent('TrackEvent', { track: trackElement.track }).track is trackE lement.track 32 PASS new TrackEvent('TrackEvent', { track: trackElement.track }).track is trackE lement.track
32 33
33 *** Initialize 'track' with valid track object *** 34 *** Initialize 'track' with valid track object ***
34 PASS new TrackEvent('TrackEvent', { track: trackElement.track }).track is trackE lement.track 35 PASS new TrackEvent('TrackEvent', { track: trackElement.track }).track is trackE lement.track
35 36
36 PASS successfullyParsed is true 37 PASS successfullyParsed is true
37 38
38 TEST COMPLETE 39 TEST COMPLETE
39 40
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698