1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:07:47 +00:00

LibWeb: Implement Element.removeAttributeNS

This commit is contained in:
Shannon Booth 2024-01-14 18:56:28 +13:00 committed by Andrew Kaster
parent 7a26a889cb
commit 3910efb80b
5 changed files with 59 additions and 1 deletions

View file

@ -0,0 +1,12 @@
Original values
xlink:href getAttributeNS = 'test'
href getAttribute = 'test'
Non-matching namespace
xlink:href getAttributeNS = 'test'
href getAttribute = 'test'
Non-matching name
xlink:href getAttributeNS = 'test'
href getAttribute = 'test'
Matching
xlink:href getAttributeNS = 'null'
href getAttribute = 'null'