| Index: third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp b/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp
|
| index 75abe7dd9c3554cf9461c7f7d3b8100d54e1ae08..040fda0fad899edbaf0a99b19afff8920cc74c28 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/ApplyStyleCommand.cpp
|
| @@ -37,6 +37,7 @@
|
| #include "core/dom/Range.h"
|
| #include "core/dom/Text.h"
|
| #include "core/editing/EditingStyle.h"
|
| +#include "core/editing/EditingStyleUtilities.h"
|
| #include "core/editing/EditingUtilities.h"
|
| #include "core/editing/PlainTextRange.h"
|
| #include "core/editing/VisibleUnits.h"
|
| @@ -656,7 +657,7 @@ static HTMLElement* highestEmbeddingAncestor(Node* startNode,
|
| Node* enclosingNode) {
|
| for (Node* n = startNode; n && n != enclosingNode; n = n->parentNode()) {
|
| if (n->isHTMLElement() &&
|
| - EditingStyle::isEmbedOrIsolate(getIdentifierValue(
|
| + EditingStyleUtilities::isEmbedOrIsolate(getIdentifierValue(
|
| CSSComputedStyleDeclaration::create(n), CSSPropertyUnicodeBidi))) {
|
| return toHTMLElement(n);
|
| }
|
|
|