ladybird/Tests/LibWeb/Crash/HTML/media-multiple-network-errors.html
Callum Law 31d8b68e73 LibWeb: Guard tasks against playback manager being cleared
The (invocation of) `on_unsupported_format_error` was already guarded
against this but it was possible for us to have moved on to the next
candidate in the interim.

Fixes a crash on https://chatgpt.com
2026-06-02 22:22:22 -05:00

5 lines
146 B
HTML

<!doctype html>
<video id="foo">
<source src="https://foobardoesntexist.com/" />
<source src="https://foobardoesntexist.com/" />
</video>