HomeSort by relevance Sort by last modified time
    Searched defs:tagHistory (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParserValues.h 242 CSSParserSelector* tagHistory() const { return m_tagHistory.get(); }
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelector.h 38 // ** tagHistory() and relation():
41 // http://www.w3.org/TR/css3-selectors/#simple-selectors-dfn). The tagHistory() method returns the next
43 // the one in tagHistory(). For example, the CSS selector .a.b #c is represented as:
54 // The order of tagHistory() varies depending on the situation.
56 // right-to-left (in the example above, this is why .c is earlier in the tagHistory() chain than .a.b).
260 const CSSSelector* tagHistory() const { return m_isLastInTagHistory ? 0 : const_cast<CSSSelector*>(this + 1); }
299 // FIXME: selectors with no tagHistory() get a relation() of Descendant (and sometimes even SubSelector). It should instead be

Completed in 62 milliseconds