You are here

private function CssParser::simpleSelectors in QueryPath 6

Same name and namespace in other branches
  1. 7.3 QueryPath/CssParser.php \CssParser::simpleSelectors()
  2. 7.2 QueryPath/CssParser.php \CssParser::simpleSelectors()
1 call to CssParser::simpleSelectors()
CssParser::selector in QueryPath/CssParser.php

File

QueryPath/CssParser.php, line 233

Class

CssParser

Code

private function simpleSelectors() {
  if ($this->DEBUG) {
    print "SIMPLE SELECTOR\n";
  }
  $this
    ->allElements();
  $this
    ->elementName();
  $this
    ->elementClass();
  $this
    ->elementID();
  $this
    ->pseudoClass();
  $this
    ->attribute();
}