Title: [162674] trunk/Source/WebKit/win
Revision
162674
Author
simon.fra...@apple.com
Date
2014-01-23 18:24:51 -0800 (Thu, 23 Jan 2014)

Log Message

Another Windows fix.

* WebFrame.cpp:
(WebFrame::frameBounds):

Modified Paths

Diff

Modified: trunk/Source/WebKit/win/ChangeLog (162673 => 162674)


--- trunk/Source/WebKit/win/ChangeLog	2014-01-24 02:20:08 UTC (rev 162673)
+++ trunk/Source/WebKit/win/ChangeLog	2014-01-24 02:24:51 UTC (rev 162674)
@@ -1,3 +1,10 @@
+2014-01-23  Simon Fraser  <simon.fra...@apple.com>
+
+        Another Windows fix.
+
+        * WebFrame.cpp:
+        (WebFrame::frameBounds):
+
 2014-01-23  pe...@outlook.com  <pe...@outlook.com>
 
         [WinCairo] Compile error.

Modified: trunk/Source/WebKit/win/WebFrame.cpp (162673 => 162674)


--- trunk/Source/WebKit/win/WebFrame.cpp	2014-01-24 02:20:08 UTC (rev 162673)
+++ trunk/Source/WebKit/win/WebFrame.cpp	2014-01-24 02:24:51 UTC (rev 162674)
@@ -2012,7 +2012,7 @@
     if (!view)
         return E_FAIL;
 
-    FloatRect bounds = view->visibleContentRect(ScrollableArea::IncludeScrollbars);
+    FloatRect bounds = view->visibleContentRectIncludingScrollbars();
     result->bottom = (LONG) bounds.height();
     result->right = (LONG) bounds.width();
     return S_OK;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to