Searched refs:getAttrList (Results 1 – 10 of 10) sorted by relevance
59 const elementAttrs = this.treeAdapter.getAttrList(element);73 const neAttrs = this.treeAdapter.getAttrList(newElement);
68 … assert.strictEqual(treeAdapters.htmlparser2.getAttrList(fragment.childNodes[0]).length, 1);
584 const attrs = this.treeAdapter.getAttrList(element);
55 const serializedAttrs = treeAdapter.getAttrList(node).map((attr: Token.Attribute) => {
163 assert.strictEqual(treeAdapter.getAttrList(node).length, 0);
91 getAttrList(element: T['element']): Attribute[]; method
252 getAttrList(element: Element): Attribute[] {
171 for (const attr of treeAdapter.getAttrList(node)) {
231 getAttrList(element: Element): Token.Attribute[] {
4 …getAttrList=function(e){const t=[];for(const n in e.attribs)t.push({name:n,value:e.attribs[n],name… function