| Index: third_party/WebKit/Source/core/dom/Element.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Element.cpp b/third_party/WebKit/Source/core/dom/Element.cpp
|
| index 52d40e479fc1eb3451a9433b6b65de4e5442e8c6..846bc7e25c34fa0831f60d03584e465b7b9e28a5 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Element.cpp
|
| @@ -239,14 +239,14 @@ bool Element::layoutObjectIsFocusable() const {
|
| DCHECK(canvas);
|
| return canvas->layoutObject() &&
|
| canvas->layoutObject()->style()->visibility() ==
|
| - EVisibility::Visible;
|
| + EVisibility::kVisible;
|
| }
|
|
|
| // FIXME: Even if we are not visible, we might have a child that is visible.
|
| // Hyatt wants to fix that some day with a "has visible content" flag or the
|
| // like.
|
| return layoutObject() &&
|
| - layoutObject()->style()->visibility() == EVisibility::Visible;
|
| + layoutObject()->style()->visibility() == EVisibility::kVisible;
|
| }
|
|
|
| Node* Element::cloneNode(bool deep) {
|
|
|