Changeset 13649 in webkit


Ignore:
Timestamp:
Apr 3, 2006 9:04:42 AM (18 years ago)
Author:
darin
Message:

Reviewed by Maciej.

  • page/Frame.cpp: (WebCore::Frame::reparseConfiguration): Added back updateStyleSelector call that was removed as part of the patch for bug 7907.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r13648 r13649  
     12006-04-02  David Kilzer  <ddkilzer@kilzer.net>
     2
     3        Reviewed by Maciej.
     4
     5        - Fix for http://bugzilla.opendarwin.org/show_bug.cgi?id=8079
     6        REGRESSION: Redraw from page cache does not show visited links
     7
     8        * page/Frame.cpp: (WebCore::Frame::reparseConfiguration): Added back
     9        updateStyleSelector call that was removed as part of the patch for bug 7907.
     10
    1112006-04-02  Maciej Stachowiak  <mjs@apple.com>
    212
  • trunk/WebCore/page/Frame.cpp

    r13639 r13649  
    16411641    else
    16421642        setUserStyleSheet(String());
     1643
     1644    // FIXME: It's not entirely clear why the following is needed.
     1645    // The document automatically does this as required when you set the style sheet.
     1646    // But we had problems when this code was removed. Details are in
     1647    // <http://bugzilla.opendarwin.org/show_bug.cgi?id=8079>.
     1648    if (d->m_doc)
     1649        d->m_doc->updateStyleSelector();
    16431650}
    16441651
Note: See TracChangeset for help on using the changeset viewer.