File: get_ancestor_attribute.js

package info (click to toggle)
pageedit 2.4.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 10,956 kB
  • sloc: ansic: 31,806; cpp: 15,036; python: 1,141; javascript: 87; sh: 13; makefile: 7
file content (12 lines) | stat: -rw-r--r-- 501 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
// Uses get_ancestor.js

// From the current node, walk up the parent hierarchy until find a matching
// element matching one of the specified node names. If found return the value
// of the attribute matching the specified name if any.
function get_ancestor_attribute(startNode, targetNodeNames, attributeName) {
    var ancestorNode = get_ancestor(startNode, targetNodeNames);
    if ( ancestorNode != null) {
        return node.getAttribute(attributeName.toLowerCase());
    }
    return null;
};