| 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 499b9ea597f8be63ab7ef5d200ddf4299afe2130..41d79d09e16abe76af2900aa8518f2158c361123 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Element.cpp
|
| @@ -2755,6 +2755,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.
|
|
|