| Index: Source/web/WebDocument.cpp
|
| diff --git a/Source/web/WebDocument.cpp b/Source/web/WebDocument.cpp
|
| index 23ddc7195e7950a9b4d9b73c9b6eab4bb53ad410..ff7cd9a8105e38dcaba91b3983fb23ed1a17662a 100644
|
| --- a/Source/web/WebDocument.cpp
|
| +++ b/Source/web/WebDocument.cpp
|
| @@ -282,27 +282,6 @@ WebElement WebDocument::createElement(const WebString& tagName)
|
| return element;
|
| }
|
|
|
| -WebSize WebDocument::scrollOffset() const
|
| -{
|
| - if (FrameView* view = constUnwrap<Document>()->view())
|
| - return view->scrollOffset();
|
| - return WebSize();
|
| -}
|
| -
|
| -WebSize WebDocument::minimumScrollOffset() const
|
| -{
|
| - if (FrameView* view = constUnwrap<Document>()->view())
|
| - return toIntSize(view->minimumScrollPosition());
|
| - return WebSize();
|
| -}
|
| -
|
| -WebSize WebDocument::maximumScrollOffset() const
|
| -{
|
| - if (FrameView* view = constUnwrap<Document>()->view())
|
| - return toIntSize(view->maximumScrollPosition());
|
| - return WebSize();
|
| -}
|
| -
|
| WebAXObject WebDocument::accessibilityObject() const
|
| {
|
| const Document* document = constUnwrap<Document>();
|
|
|