Function: dom-by-style
dom-by-style is a byte-compiled function defined in dom.el.gz.
Signature
(dom-by-style DOM MATCH)
Documentation
Return elements in DOM that have a style that matches regexp MATCH.
Source Code
;; Defined in /usr/src/emacs/lisp/dom.el.gz
(defun dom-by-style (dom match)
"Return elements in DOM that have a style that matches regexp MATCH."
(dom-elements dom 'style match))