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:
parent
7a26a889cb
commit
3910efb80b
5 changed files with 59 additions and 1 deletions
12
Tests/LibWeb/Text/expected/DOM/Element-removeAttributeNS.txt
Normal file
12
Tests/LibWeb/Text/expected/DOM/Element-removeAttributeNS.txt
Normal 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'
|
Loading…
Add table
Add a link
Reference in a new issue