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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/js/custom-constructors-expected.txt

Issue 1858073002: Media: Report HTMLMediaElement player errors to devtools console Base URL: https://chromium.googlesource.com/chromium/src.git@fix_472253_1
Patch Set: Rebase, attempt to fix 1 regressed expectation, temporary logging for investigating 2 other regress… Created 4 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 ERROR: MEDIA_ERROR_LOG_ENTRY {"error":"Failed loading buffered resource using range request due to invalid server response. HTTP status code=404"}
2 CONSOLE ERROR: MEDIA_ERROR_LOG_ENTRY {"error":"Failed loading buffered resource using range request due to invalid server response. HTTP status code=404"}
1 This test checks construction of objects with custom constructors. 3 This test checks construction of objects with custom constructors.
2 4
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 5 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 6
5 7
6 PASS new Image() is non-null. 8 PASS new Image() is non-null.
7 PASS new Image().tagName is "IMG" 9 PASS new Image().tagName is "IMG"
8 PASS new Image().height is 0 10 PASS new Image().height is 0
9 PASS new Image().width is 0 11 PASS new Image().width is 0
10 PASS new Image(0).width is 0 12 PASS new Image(0).width is 0
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 PASS new Audio() is non-null. 52 PASS new Audio() is non-null.
51 PASS new Audio().tagName is "AUDIO" 53 PASS new Audio().tagName is "AUDIO"
52 PASS new Audio().src is "" 54 PASS new Audio().src is ""
53 PASS new Audio().preload is "auto" 55 PASS new Audio().preload is "auto"
54 PASS new Audio('http://127.0.0.1/someurl').src is "http://127.0.0.1/someurl" 56 PASS new Audio('http://127.0.0.1/someurl').src is "http://127.0.0.1/someurl"
55 PASS new Audio('http://127.0.0.1/someurl').preload is "auto" 57 PASS new Audio('http://127.0.0.1/someurl').preload is "auto"
56 PASS successfullyParsed is true 58 PASS successfullyParsed is true
57 59
58 TEST COMPLETE 60 TEST COMPLETE
59 61
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698