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.
(cadr (if (consp (car node)) (car node) node)))