mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 01:00:05 +00:00
LibWeb: Include namespace parameter in associated_attribute_changed()
This commit is contained in:
parent
5947c37637
commit
40cb36607c
Notes:
github-actions[bot]
2024-12-14 20:12:28 +00:00
Author: https://github.com/tcl3
Commit: 40cb36607c
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2891
11 changed files with 12 additions and 12 deletions
|
@ -49,7 +49,7 @@ private:
|
|||
{ \
|
||||
ElementBaseClass::attribute_changed(name, old_value, value, namespace_); \
|
||||
form_node_attribute_changed(name, value); \
|
||||
form_associated_element_attribute_changed(name, value); \
|
||||
form_associated_element_attribute_changed(name, value, namespace_); \
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#selection-direction
|
||||
|
@ -110,7 +110,7 @@ protected:
|
|||
|
||||
virtual void form_associated_element_was_inserted() { }
|
||||
virtual void form_associated_element_was_removed(DOM::Node*) { }
|
||||
virtual void form_associated_element_attribute_changed(FlyString const&, Optional<String> const&) { }
|
||||
virtual void form_associated_element_attribute_changed(FlyString const&, Optional<String> const&, Optional<FlyString> const&) { }
|
||||
|
||||
void form_node_was_inserted();
|
||||
void form_node_was_removed();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue