mirror of
https://github.com/servo/servo.git
synced 2025-07-30 10:40:27 +01:00
Implement Element.getAttributeNames
This commit is contained in:
parent
329a5b0c95
commit
b8ae5897f1
7 changed files with 15 additions and 9 deletions
|
@ -1228,6 +1228,11 @@ impl ElementMethods for Element {
|
|||
self.attr_list.or_init(|| NamedNodeMap::new(&window_from_node(self), self))
|
||||
}
|
||||
|
||||
// https://dom.spec.whatwg.org/#dom-element-getattributenames
|
||||
fn GetAttributeNames(&self) -> Vec<DOMString> {
|
||||
self.attrs.borrow().iter().map(|attr| attr.Name()).collect()
|
||||
}
|
||||
|
||||
// https://dom.spec.whatwg.org/#dom-element-getattribute
|
||||
fn GetAttribute(&self, name: DOMString) -> Option<DOMString> {
|
||||
self.GetAttributeNode(name)
|
||||
|
|
|
@ -34,6 +34,8 @@ interface Element : Node {
|
|||
[SameObject]
|
||||
readonly attribute NamedNodeMap attributes;
|
||||
[Pure]
|
||||
sequence<DOMString> getAttributeNames();
|
||||
[Pure]
|
||||
DOMString? getAttribute(DOMString name);
|
||||
[Pure]
|
||||
DOMString? getAttributeNS(DOMString? namespace, DOMString localName);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue