Chromium Code Reviews| Index: third_party/WebKit/Source/core/dom/StyleSheetCandidate.cpp |
| diff --git a/third_party/WebKit/Source/core/dom/StyleSheetCandidate.cpp b/third_party/WebKit/Source/core/dom/StyleSheetCandidate.cpp |
| index 3dc0e62a4dd77e6f736a51f031f6e74255e18372..12890f0f88db81058544eacca3abb0ede692adfd 100644 |
| --- a/third_party/WebKit/Source/core/dom/StyleSheetCandidate.cpp |
| +++ b/third_party/WebKit/Source/core/dom/StyleSheetCandidate.cpp |
| @@ -93,6 +93,10 @@ bool StyleSheetCandidate::canBeActivated(const String& currentPreferrableName) c |
| StyleSheet* sheet = this->sheet(); |
| if (!sheet || sheet->disabled() || !sheet->isCSSStyleSheet()) |
| return false; |
| + |
| + if (sheet->ownerNode() && sheet->ownerNode()->treeScope().rootNode().isShadowRoot()) |
|
dglazkov
2016/02/22 16:44:45
would ownerNode()->isInShadowTree() not work?
rune
2016/02/22 17:38:16
Done.
|
| + return true; |
| + |
| const AtomicString& title = this->title(); |
| if (!isEnabledViaScript() && !title.isEmpty() && title != currentPreferrableName) |
| return false; |