| 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 8fb4a4d37b6c25f79605301a33d289ddf59be2d9..ffb65516ecaf8b27538b7154d27da47079a68f4b 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Element.cpp
|
| @@ -2766,6 +2766,11 @@ void Element::releasePointerCapture(int pointerId, ExceptionState& exceptionStat
|
| }
|
| }
|
|
|
| +bool Element::hasPointerCapture(int pointerId)
|
| +{
|
| + return document().frame() && document().frame()->eventHandler().hasPointerCapture(pointerId, this);
|
| +}
|
| +
|
| String Element::innerText()
|
| {
|
| // We need to update layout, since plainText uses line boxes in the layout tree.
|
|
|