mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
LibWeb/SVG: Implement default_tab_index_value for a element
Another FIXME bites the dust :^)
This commit is contained in:
parent
9c13644cde
commit
9c4e80a3ec
Notes:
github-actions[bot]
2024-08-14 19:40:26 +00:00
Author: https://github.com/jamierocks
Commit: 9c4e80a3ec
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1077
Reviewed-by: https://github.com/AtkinsSJ ✅
Reviewed-by: https://github.com/tcl3 ✅
5 changed files with 61 additions and 1 deletions
|
@ -43,6 +43,13 @@ void SVGAElement::attribute_changed(FlyString const& name, Optional<String> cons
|
|||
}
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/interaction.html#dom-tabindex
|
||||
i32 SVGAElement::default_tab_index_value() const
|
||||
{
|
||||
// See the base function for the spec comments.
|
||||
return 0;
|
||||
}
|
||||
|
||||
// https://svgwg.org/svg2-draft/linking.html#__svg__SVGAElement__relList
|
||||
JS::NonnullGCPtr<DOM::DOMTokenList> SVGAElement::rel_list()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue