| Index: Source/core/frame/SmartClip.cpp
|
| diff --git a/Source/core/frame/SmartClip.cpp b/Source/core/frame/SmartClip.cpp
|
| index 9d285cb4fc03a4a614280b7c299b57b7a8b23aca..7259267f3c9be7bb1b0b8e8fb53e644dc8fcd54b 100644
|
| --- a/Source/core/frame/SmartClip.cpp
|
| +++ b/Source/core/frame/SmartClip.cpp
|
| @@ -234,7 +234,7 @@ String SmartClip::extractTextFromNode(Node* node)
|
|
|
| StringBuilder result;
|
| for (Node& currentNode : NodeTraversal::inclusiveDescendantsOf(*node)) {
|
| - const LayoutStyle* style = currentNode.computedStyle();
|
| + const ComputedStyle* style = currentNode.ensureComputedStyle();
|
| if (style && style->userSelect() == SELECT_NONE)
|
| continue;
|
|
|
|
|