pQuery\DomNode::filter_root PHP Method

filter_root() protected method

Checks if node matches css query filter ":root"
See also: match()
protected filter_root ( ) : boolean
return boolean
    protected function filter_root()
    {
        return strtolower($this->tag) === 'html';
    }
DomNode