LibWeb: Stub out several methods for ElementInternals

This begins implementation on form-associated custom elements.
This fixes a few WPT tests which I'm importing.

Co-authored-by: Sam Atkins <sam@ladybird.org>
This commit is contained in:
Noah 2025-03-31 01:43:20 -07:00 committed by Sam Atkins
commit 85842c1739
Notes: github-actions[bot] 2025-05-21 14:29:13 +00:00
9 changed files with 300 additions and 10 deletions

View file

@ -156,6 +156,8 @@ public:
virtual bool is_valid_invoker_command(String&) { return false; }
virtual void invoker_command_steps(DOM::Element&, String&) { }
bool is_form_associated_custom_element();
protected:
HTMLElement(DOM::Document&, DOM::QualifiedName);