private function CssParser::simpleSelectors in QueryPath 7.2
Same name and namespace in other branches
- 6 QueryPath/CssParser.php \CssParser::simpleSelectors()
- 7.3 QueryPath/CssParser.php \CssParser::simpleSelectors()
1 call to CssParser::simpleSelectors()
- CssParser::selector in QueryPath/
CssParser.php
File
- QueryPath/
CssParser.php, line 233
Class
Code
private function simpleSelectors() {
if ($this->DEBUG) {
print "SIMPLE SELECTOR\n";
}
$this
->allElements();
$this
->elementName();
$this
->elementClass();
$this
->elementID();
$this
->pseudoClass();
$this
->attribute();
}