LibWeb: Implement Element.getAttributeNS

This commit is contained in:
Shannon Booth 2024-01-13 17:31:46 +13:00 committed by Andreas Kling
commit 785fa60cca
Notes: sideshowbarker 2024-07-17 03:14:39 +09:00
5 changed files with 36 additions and 0 deletions

View file

@ -99,6 +99,7 @@ public:
Optional<String> attribute(FlyString const& name) const { return get_attribute(name); }
Optional<String> get_attribute(FlyString const& name) const;
Optional<String> get_attribute_ns(Optional<FlyString> const& namespace_, FlyString const& name) const;
ByteString deprecated_get_attribute(FlyString const& name) const;
String get_attribute_value(FlyString const& local_name, Optional<FlyString> const& namespace_ = {}) const;