| Index: third_party/WebKit/Source/core/css/CSSSelector.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSSelector.h b/third_party/WebKit/Source/core/css/CSSSelector.h
|
| index 94718e5e2bfa8b02f845e6c9d2e8c7df66df6ec9..23d9d2750b59893e9984c461434ada957235cd7c 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSSelector.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSSelector.h
|
| @@ -38,7 +38,7 @@ class CSSSelectorList;
|
| // representative list of selectors is in CSSSelectorTest; run it in a debug
|
| // build to see useful debugging output.
|
| //
|
| -// ** tagHistory() and relation():
|
| +// ** TagHistory() and Relation():
|
| //
|
| // Selectors are represented as a linked list of simple selectors (defined more
|
| // or less according to
|
| @@ -47,11 +47,11 @@ class CSSSelectorList;
|
| // returns the relationship of the current simple selector to the one in
|
| // tagHistory(). For example, the CSS selector .a.b #c is represented as:
|
| //
|
| -// selectorText(): .a.b #c
|
| -// --> (relation == Descendant)
|
| -// selectorText(): .a.b
|
| -// --> (relation == SubSelector)
|
| -// selectorText(): .b
|
| +// SelectorText(): .a.b #c
|
| +// --> (relation == kDescendant)
|
| +// SelectorText(): .a.b
|
| +// --> (relation == kSubSelector)
|
| +// SelectorText(): .b
|
| //
|
| // The order of tagHistory() varies depending on the situation.
|
| // * Relations using combinators
|
|
|