File: get_ancestor_attribute.js

package info (click to toggle)
pageedit 1.9.20%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 9,508 kB
  • sloc: ansic: 31,777; cpp: 12,496; python: 1,415; makefile: 106; javascript: 87; sh: 21
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;
};