WebKit Bugzilla
Attachment 373010 Details for
Bug 198296
: missing error event after the connection is interrupted and some media data has been received
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
Test case
test_case.html (text/html), 846 bytes, created by
tomasz
on 2019-06-27 01:46:11 PDT
(
hide
)
Description:
Test case
Filename:
MIME Type:
Creator:
tomasz
Created:
2019-06-27 01:46:11 PDT
Size:
846 bytes
patch
obsolete
><!DOCTYPE html> ><html> ><head> > <meta charset="utf-8"/> ></head> ><body> ><video controls src="//castlabs-dl.s3.amazonaws.com/public/Client/Movies/HLS/destiny_hls_clear/destiny.m3u8"></video> ><script> > var vid = document.querySelector('video'); > vid.addEventListener('stalled', function () { > console.log('stalled'); > }); > vid.addEventListener('suspend', function () { > console.log('suspend'); > }); > vid.addEventListener('progress', function () { > console.log('progress'); > }); > vid.addEventListener('waiting', function () { > console.log('waiting'); > }); > vid.addEventListener('error', function () { > console.log('error'); > }); > > window.addEventListener('offline', function () { > console.log('offline'); > }); > window.addEventListener('online', function () { > console.log('online'); > }); ></script> ></body> ></html>
<!DOCTYPE html> <html> <head> <meta charset="utf-8"/> </head> <body> <video controls src="//castlabs-dl.s3.amazonaws.com/public/Client/Movies/HLS/destiny_hls_clear/destiny.m3u8"></video> <script> var vid = document.querySelector('video'); vid.addEventListener('stalled', function () { console.log('stalled'); }); vid.addEventListener('suspend', function () { console.log('suspend'); }); vid.addEventListener('progress', function () { console.log('progress'); }); vid.addEventListener('waiting', function () { console.log('waiting'); }); vid.addEventListener('error', function () { console.log('error'); }); window.addEventListener('offline', function () { console.log('offline'); }); window.addEventListener('online', function () { console.log('online'); }); </script> </body> </html>
View Attachment As Raw
Actions:
View
Attachments on
bug 198296
: 373010