| 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 ef260adf32dc31fb8e8c0d0dfbfbde675c104369..367451698661b9c673b89083a49f9f73464f587b 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Element.cpp
|
| @@ -2391,6 +2391,7 @@ bool Element::hasAttributeNS(const AtomicString& namespaceURI, const AtomicStrin
|
|
|
| void Element::focus(const FocusParams& params)
|
| {
|
| + fprintf(stderr, "Element::focus\n");
|
| if (!isConnected())
|
| return;
|
|
|
| @@ -2454,6 +2455,7 @@ void Element::updateFocusAppearance(SelectionBehaviorOnFocus selectionBehavior)
|
|
|
| void Element::blur()
|
| {
|
| + fprintf(stderr, "Element::blur\n");
|
| cancelFocusAppearanceUpdate();
|
| if (adjustedFocusedElementInTreeScope() == this) {
|
| Document& doc = document();
|
|
|