mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-04 00:27:47 +00:00
LibWeb: Implement Element.removeAttributeNS
This commit is contained in:
parent
7a26a889cb
commit
3910efb80b
Notes:
sideshowbarker
2024-07-17 08:59:18 +09:00
Author: https://github.com/shannonbooth
Commit: 3910efb80b
Pull-request: https://github.com/SerenityOS/serenity/pull/22748
Reviewed-by: https://github.com/ADKaster ✅
5 changed files with 59 additions and 1 deletions
|
@ -35,7 +35,8 @@ interface Element : Node {
|
|||
[CEReactions] Attr? setAttributeNode(Attr attr);
|
||||
[CEReactions] Attr? setAttributeNodeNS(Attr attr);
|
||||
|
||||
[CEReactions] undefined removeAttribute(DOMString qualifiedName);
|
||||
[CEReactions] undefined removeAttribute([FlyString] DOMString qualifiedName);
|
||||
[CEReactions] undefined removeAttributeNS([FlyString] DOMString? namespace, [FlyString] DOMString localName);
|
||||
[CEReactions] boolean toggleAttribute(DOMString qualifiedName, optional boolean force);
|
||||
boolean hasAttribute(DOMString qualifiedName);
|
||||
boolean hasAttributeNS([FlyString] DOMString? namespace, [FlyString] DOMString localName);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue