LibWeb: Implement HTMLTrackElement.readyState

This commit is contained in:
Jamie Mansfield 2024-08-05 22:28:19 +01:00 committed by Tim Ledbetter
commit 1d12cb69d4
Notes: github-actions[bot] 2024-08-06 06:58:30 +00:00
5 changed files with 38 additions and 1 deletions

View file

@ -19,6 +19,8 @@ class HTMLTrackElement final : public HTMLElement {
public:
virtual ~HTMLTrackElement() override;
WebIDL::UnsignedShort ready_state();
JS::Handle<TextTrack> track() { return m_track; }
private: