Changeset 51115 in webkit


Ignore:
Timestamp:
Nov 18, 2009 9:25:42 AM (14 years ago)
Author:
pfeldman@chromium.org
Message:

2009-11-18 Pavel Feldman <pfeldman@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):
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/platform/win/Skipped

    r51089 r51115  
    704704# https://bugs.webkit.org/show_bug.cgi?id=31479
    705705websocket
    706 
    707 # https://bugs.webkit.org/show_bug.cgi?id=31596
    708 # Inspector timeline tests are flaky on Windows Release, skipping for now
    709 inspector/timeline-layout.html
    710 inspector/timeline-mark-timeline.html
    711 inspector/timeline-parse-html.html
    712 inspector/timeline-recalculate-styles.html
    713 inspector/timeline-script-tag-1.html
    714 inspector/timeline-script-tag-2.html
  • trunk/WebCore/ChangeLog

    r51112 r51115  
     12009-11-18  Pavel Feldman  <pfeldman@chromium.org>
     2
     3        Reviewed by Timothy Hatcher.
     4
     5        Web Inspector: clone timeline records array instead of
     6        copying reference on invalidate all.
     7
     8        https://bugs.webkit.org/show_bug.cgi?id=31596
     9
     10        * inspector/front-end/AbstractTimelinePanel.js:
     11        (WebInspector.AbstractTimelinePanel.prototype.invalidateAllItems):
     12
    1132009-11-18  Simon Fraser  <simon.fraser@apple.com>
    214
  • trunk/WebCore/inspector/front-end/AbstractTimelinePanel.js

    r50909 r51115  
    270270    invalidateAllItems: function()
    271271    {
    272         this._staleItems = this._items;
     272        this._staleItems = this._items.slice();
    273273    },
    274274
Note: See TracChangeset for help on using the changeset viewer.