1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 19:45:07 +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

@ -20,6 +20,9 @@ private:
HTMLSourceElement(DOM::Document&, DOM::QualifiedName);
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
virtual void inserted() override;
virtual void removed_from(DOM::Node*) override;
};
}