Title: [87185] branches/safari-534-branch/Source/WebKit2
Revision
87185
Author
[email protected]
Date
2011-05-24 12:16:13 -0700 (Tue, 24 May 2011)

Log Message

Merge r86985.

Modified Paths

Diff

Modified: branches/safari-534-branch/Source/WebKit2/ChangeLog (87184 => 87185)


--- branches/safari-534-branch/Source/WebKit2/ChangeLog	2011-05-24 19:13:02 UTC (rev 87184)
+++ branches/safari-534-branch/Source/WebKit2/ChangeLog	2011-05-24 19:16:13 UTC (rev 87185)
@@ -1,3 +1,15 @@
+2011-05-23  Lucas Forschler  <[email protected]>
+
+    Merge r86985.
+
+    2011-05-20  Matthew Delaney  <[email protected]>
+
+        Reviewed by Steve Falkenburg.
+
+        Default min DOM Timer interval is not set soon enough for first page to pick it up in WK2
+        https://bugs.webkit.org/show_bug.cgi?id=61215 
+
+        * WebProcess/WebPage/WebPage.cpp: Simply moving the DOM min timer interval setting to before the first page creation.
 2011-05-22  John Sullivan  <[email protected]>
 
         Rolled out <http://trac.webkit.org/changeset/87030>, which I accidentally checked into

Modified: branches/safari-534-branch/Source/WebKit2/WebProcess/WebPage/WebPage.cpp (87184 => 87185)


--- branches/safari-534-branch/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2011-05-24 19:13:02 UTC (rev 87184)
+++ branches/safari-534-branch/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2011-05-24 19:16:13 UTC (rev 87185)
@@ -194,6 +194,9 @@
 #endif
 {
     ASSERT(m_pageID);
+    // FIXME: This is a non-ideal location for this Setting and
+    // 4ms should be adopted project-wide now, https://bugs.webkit.org/show_bug.cgi?id=61214
+    Settings::setDefaultMinDOMTimerInterval(0.004);
 
     Page::PageClients pageClients;
     pageClients.chromeClient = new WebChromeClient(this);
@@ -223,7 +226,6 @@
     m_page->setGroupName(m_pageGroup->identifier());
 
     platformInitialize();
-    Settings::setDefaultMinDOMTimerInterval(0.004);
 
     m_drawingArea = DrawingArea::create(this, parameters);
     m_mainFrame = WebFrame::createMainFrame(this);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to