Changeset 72988 in webkit


Ignore:
Timestamp:
Nov 30, 2010 5:42:33 PM (13 years ago)
Author:
pfeldman@chromium.org
Message:

2010-11-30 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Dave Hyatt.

Web Inspector: [CRASH] on "Revert to this revision" of style with import.
https://bugs.webkit.org/show_bug.cgi?id=50256

Rolled back one line from http://trac.webkit.org/changeset/36904 as agreed with
David.

  • css/CSSImportRule.cpp: (WebCore::CSSImportRule::insertedIntoParent):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r72987 r72988  
     12010-11-30  Pavel Feldman  <pfeldman@chromium.org>
     2
     3        Reviewed by Dave Hyatt.
     4
     5        Web Inspector: [CRASH] on "Revert to this revision" of style with import.
     6        https://bugs.webkit.org/show_bug.cgi?id=50256
     7
     8        Rolled back one line from http://trac.webkit.org/changeset/36904 as agreed with
     9        David.
     10
     11        * css/CSSImportRule.cpp:
     12        (WebCore::CSSImportRule::insertedIntoParent):
     13
    1142010-11-30  Martin Robinson  <mrobinson@igalia.com>
    215
  • trunk/WebCore/css/CSSImportRule.cpp

    r72540 r72988  
    143143        // removed from the pending sheet count, so let the doc know
    144144        // the sheet being imported is pending.
    145         if (parentSheet && parentSheet->loadCompleted() && root == parentSheet)
     145        if (parentSheet && parentSheet->loadCompleted() && parentSheet->document())
    146146            parentSheet->document()->addPendingSheet();
    147147        m_loading = true;
Note: See TracChangeset for help on using the changeset viewer.