Title: [171952] trunk/Source/WebCore
- Revision
- 171952
- Author
- [email protected]
- Date
- 2014-08-01 15:47:57 -0700 (Fri, 01 Aug 2014)
Log Message
Inspector highlights clipped at the bottom on the page in WK1 views with
contentInsets
https://bugs.webkit.org/show_bug.cgi?id=135480
-and corresponding-
<rdar://problem/17850323>
Forgot to commit this one very critical part with
http://trac.webkit.org/changeset/171951
* platform/ScrollView.cpp:
(WebCore::ScrollView::unscaledVisibleContentSizeIncludingObscuredArea):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (171951 => 171952)
--- trunk/Source/WebCore/ChangeLog 2014-08-01 22:39:52 UTC (rev 171951)
+++ trunk/Source/WebCore/ChangeLog 2014-08-01 22:47:57 UTC (rev 171952)
@@ -6,6 +6,20 @@
-and corresponding-
<rdar://problem/17850323>
+ Forgot to commit this one very critical part with
+ http://trac.webkit.org/changeset/171951
+
+ * platform/ScrollView.cpp:
+ (WebCore::ScrollView::unscaledVisibleContentSizeIncludingObscuredArea):
+
+2014-08-01 Beth Dakin <[email protected]>
+
+ Inspector highlights clipped at the bottom on the page in WK1 views with
+ contentInsets
+ https://bugs.webkit.org/show_bug.cgi?id=135480
+ -and corresponding-
+ <rdar://problem/17850323>
+
Reviewed by Simon Fraser.
unscaledTotalVisibleContentSize() was the main function on Mac that was expected
Modified: trunk/Source/WebCore/platform/ScrollView.cpp (171951 => 171952)
--- trunk/Source/WebCore/platform/ScrollView.cpp 2014-08-01 22:39:52 UTC (rev 171951)
+++ trunk/Source/WebCore/platform/ScrollView.cpp 2014-08-01 22:47:57 UTC (rev 171952)
@@ -269,7 +269,7 @@
IntSize ScrollView::unscaledVisibleContentSizeIncludingObscuredArea(VisibleContentRectIncludesScrollbars scrollbarInclusion) const
{
if (platformWidget())
- return platformVisibleContentSize(scrollbarInclusion == IncludeScrollbars);
+ return platformVisibleContentSizeIncludingObscuredArea(scrollbarInclusion == IncludeScrollbars);
#if USE(TILED_BACKING_STORE)
if (!m_fixedVisibleContentRect.isEmpty())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes