mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Implement nodeName on Attr
This commit is contained in:
parent
7f4929d52d
commit
8cbcdfb761
7 changed files with 10 additions and 80 deletions
|
@ -17,12 +17,14 @@ interface Attr {
|
|||
readonly attribute DOMString localName;
|
||||
[Constant]
|
||||
readonly attribute DOMString name;
|
||||
[Constant]
|
||||
readonly attribute DOMString nodeName; // historical alias of .name
|
||||
[Pure]
|
||||
attribute DOMString value;
|
||||
[Pure]
|
||||
attribute DOMString textContent; // alias of .value
|
||||
attribute DOMString textContent; // historical alias of .value
|
||||
[Pure]
|
||||
attribute DOMString nodeValue; // alias of .value
|
||||
attribute DOMString nodeValue; // historical alias of .value
|
||||
|
||||
[Pure]
|
||||
readonly attribute Element? ownerElement;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue