| Index: third_party/WebKit/Source/core/css/CSSSelector.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSSelector.cpp b/third_party/WebKit/Source/core/css/CSSSelector.cpp
|
| index 89d130750e122e0511d45c2ec8489e672408c01d..59e7564bc169219b3efadc045317d1c74a7c6daa 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSSelector.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSSelector.cpp
|
| @@ -762,6 +762,8 @@ String CSSSelector::selectorText(const String& rightSide) const {
|
| case ShadowDeep:
|
| return tagHistory->selectorText(" /deep/ " + str.toString() +
|
| rightSide);
|
| + case ShadowPiercingDescendant:
|
| + return tagHistory->selectorText(" >>> " + str.toString() + rightSide);
|
| case DirectAdjacent:
|
| return tagHistory->selectorText(" + " + str.toString() + rightSide);
|
| case IndirectAdjacent:
|
|
|