Function: dom-attributes

dom-attributes is a byte-compiled function defined in dom.el.gz.

Signature

(dom-attributes NODE)

Documentation

Return the NODE attributes.

Source Code

;; Defined in /usr/src/emacs/lisp/dom.el.gz
(defsubst dom-attributes (node)
  "Return the NODE attributes."
  ;; Called on a list of nodes.  Use the first.
  (if (consp (car node))
      (cadr (car node))
    (cadr node)))