mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
Having PlaybackManager start in Buffering was causing us to report a media element readyState of HAVE_CURRENT_DATA. HAVE_CURRENT_DATA doesn't make a whole lot of sense for local files, since we should have all the data immediately when we process the metadata. This is reflected in the buffered attribute, so let's not limit the ready state unecessarily.
7 lines
174 B
Plaintext
7 lines
174 B
Plaintext
loadstart: readyState=0
|
|
durationchange: readyState=4 duration=12.043
|
|
loadedmetadata: readyState=4
|
|
loadeddata: readyState=4
|
|
canplay: readyState=4
|
|
canplaythrough: readyState=4
|