Title: [109379] trunk/Source/WebCore
Revision
109379
Author
bda...@apple.com
Date
2012-03-01 11:36:55 -0800 (Thu, 01 Mar 2012)

Log Message

Reviewed by Kevin Decker.

Part of https://bugs.webkit.org/show_bug.cgi?id=79705

Here's some of that tweaking promised in the comment. Adjusting 
gMaximumUnpaintedAreaRatio down a bit.
* page/Page.cpp:
(WebCore):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (109378 => 109379)


--- trunk/Source/WebCore/ChangeLog	2012-03-01 19:33:44 UTC (rev 109378)
+++ trunk/Source/WebCore/ChangeLog	2012-03-01 19:36:55 UTC (rev 109379)
@@ -1,3 +1,14 @@
+2012-03-01  Beth Dakin  <bda...@apple.com>
+
+        Reviewed by Kevin Decker.
+
+        Part of https://bugs.webkit.org/show_bug.cgi?id=79705
+
+        Here's some of that tweaking promised in the comment. Adjusting 
+        gMaximumUnpaintedAreaRatio down a bit.
+        * page/Page.cpp:
+        (WebCore):
+
 2012-03-01  Levi Weintraub  <le...@chromium.org>
 
         Add roundToInt method for LayoutUnits

Modified: trunk/Source/WebCore/page/Page.cpp (109378 => 109379)


--- trunk/Source/WebCore/page/Page.cpp	2012-03-01 19:33:44 UTC (rev 109378)
+++ trunk/Source/WebCore/page/Page.cpp	2012-03-01 19:36:55 UTC (rev 109379)
@@ -1018,7 +1018,7 @@
 
 // These are magical constants that might be tweaked over time.
 static double gMinimumPaintedAreaRatio = 0.1;
-static double gMaximumUnpaintedAreaRatio = 0.1;
+static double gMaximumUnpaintedAreaRatio = 0.04;
 
 void Page::setRelevantRepaintedObjectsCounterThreshold(uint64_t threshold)
 {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to