1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 21:48:11 +00:00

LibWeb: Partially implement HTMLSourceElement's insertion/removal steps

This implements the substeps which concern HTMLMediaElement parents.
This commit is contained in:
Timothy Flynn 2023-05-12 15:04:58 -04:00 committed by Andreas Kling
parent c161a0fc49
commit 05019746d2
3 changed files with 35 additions and 1 deletions

View file

@ -40,6 +40,7 @@ public:
WebIDL::ExceptionOr<void> set_decoder_error(String error_message);
String const& current_src() const { return m_current_src; }
WebIDL::ExceptionOr<void> select_resource();
enum class NetworkState : u16 {
Empty,
@ -111,7 +112,6 @@ private:
Task::Source media_element_event_task_source() const { return m_media_element_event_task_source.source; }
WebIDL::ExceptionOr<void> load_element();
WebIDL::ExceptionOr<void> select_resource();
WebIDL::ExceptionOr<void> fetch_resource(AK::URL const&, Function<void(String)> failure_callback);
static bool verify_response(JS::NonnullGCPtr<Fetch::Infrastructure::Response>, ByteRange const&);
WebIDL::ExceptionOr<void> process_media_data(Function<void(String)> failure_callback);