| Index: Source/core/dom/Document.cpp
|
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
|
| index 0974798e64e0248938fd2da18f10df020525cf3e..067e4dc7ce01d536627777405ff6549c01e02c9b 100644
|
| --- a/Source/core/dom/Document.cpp
|
| +++ b/Source/core/dom/Document.cpp
|
| @@ -1242,6 +1242,13 @@ Element* Document::elementFromPoint(int x, int y) const
|
| return TreeScope::elementFromPoint(x, y);
|
| }
|
|
|
| +Vector<Element*> Document::elementsFromPoint(int x, int y) const
|
| +{
|
| + if (!renderView())
|
| + return Vector<Element*>();
|
| + return TreeScope::elementsFromPoint(x, y);
|
| +}
|
| +
|
| PassRefPtrWillBeRawPtr<Range> Document::caretRangeFromPoint(int x, int y)
|
| {
|
| if (!renderView())
|
|
|