[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

pfeldman at chromium.org pfeldman at chromium.org
Wed Apr 7 23:46:48 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit b3c2c3159828e13d13bf69034aee67939d089a68
Author: pfeldman at chromium.org <pfeldman at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Nov 18 17:25:42 2009 +0000

    2009-11-18  Pavel Feldman  <pfeldman at chromium.org>
    
            Reviewed by Timothy Hatcher.
    
            Web Inspector: clone timeline records array instead of
            copying reference on invalidate all.
    
            https://bugs.webkit.org/show_bug.cgi?id=31596
    
            * inspector/front-end/AbstractTimelinePanel.js:
            (WebInspector.AbstractTimelinePanel.prototype.invalidateAllItems):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51115 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/platform/win/Skipped b/LayoutTests/platform/win/Skipped
index 5ea4c8b..bcf93fb 100644
--- a/LayoutTests/platform/win/Skipped
+++ b/LayoutTests/platform/win/Skipped
@@ -703,12 +703,3 @@ fast/history/back-forward-reset-after-error-handling.html
 # WebSocket server doesn't start on Windows.
 # https://bugs.webkit.org/show_bug.cgi?id=31479
 websocket
-
-# https://bugs.webkit.org/show_bug.cgi?id=31596
-# Inspector timeline tests are flaky on Windows Release, skipping for now
-inspector/timeline-layout.html
-inspector/timeline-mark-timeline.html
-inspector/timeline-parse-html.html
-inspector/timeline-recalculate-styles.html
-inspector/timeline-script-tag-1.html
-inspector/timeline-script-tag-2.html
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 87335b1..ff866a0 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2009-11-18  Pavel Feldman  <pfeldman at chromium.org>
+
+        Reviewed by Timothy Hatcher.
+
+        Web Inspector: clone timeline records array instead of
+        copying reference on invalidate all.
+
+        https://bugs.webkit.org/show_bug.cgi?id=31596
+
+        * inspector/front-end/AbstractTimelinePanel.js:
+        (WebInspector.AbstractTimelinePanel.prototype.invalidateAllItems):
+
 2009-11-18  Simon Fraser  <simon.fraser at apple.com>
 
         Reviewed by Dan Bernstein.
diff --git a/WebCore/inspector/front-end/AbstractTimelinePanel.js b/WebCore/inspector/front-end/AbstractTimelinePanel.js
index ecddff9..eb16602 100644
--- a/WebCore/inspector/front-end/AbstractTimelinePanel.js
+++ b/WebCore/inspector/front-end/AbstractTimelinePanel.js
@@ -269,7 +269,7 @@ WebInspector.AbstractTimelinePanel.prototype = {
 
     invalidateAllItems: function()
     {
-        this._staleItems = this._items;
+        this._staleItems = this._items.slice();
     },
 
     refresh: function()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list