Index: Source/core/testing/Internals.cpp |
diff --git a/Source/core/testing/Internals.cpp b/Source/core/testing/Internals.cpp |
index f29fa251d71662beb8b2371d917671b3e79a35a3..8afbe571081c45a771b3f9272d10f856614005f6 100644 |
--- a/Source/core/testing/Internals.cpp |
+++ b/Source/core/testing/Internals.cpp |
@@ -1815,17 +1815,6 @@ void Internals::setDeviceScaleFactor(float scaleFactor, ExceptionState& es) |
page->setDeviceScaleFactor(scaleFactor); |
} |
-void Internals::setPageScaleFactor(float scaleFactor, int x, int y, ExceptionState& es) |
-{ |
- Document* document = contextDocument(); |
- if (!document || !document->page()) { |
- es.throwDOMException(InvalidAccessError); |
- return; |
- } |
- Page* page = document->page(); |
- page->setPageScaleFactor(scaleFactor, IntPoint(x, y)); |
-} |
- |
void Internals::setIsCursorVisible(Document* document, bool isVisible, ExceptionState& es) |
{ |
if (!document || !document->page()) { |