Changeset 92749 in webkit


Ignore:
Timestamp:
Aug 9, 2011 10:35:28 PM (13 years ago)
Author:
macpherson@chromium.org
Message:

Use setFontDescription helper to set m_fontDirty.
https://bugs.webkit.org/show_bug.cgi?id=65956

Reviewed by Dan Bernstein.

No new tests / trivial cleanup.

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::applyProperty):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r92747 r92749  
     12011-08-09  Luke Macpherson   <macpherson@chromium.org>
     2
     3        Use setFontDescription helper to set m_fontDirty.
     4        https://bugs.webkit.org/show_bug.cgi?id=65956
     5
     6        Reviewed by Dan Bernstein.
     7
     8        No new tests / trivial cleanup.
     9
     10        * css/CSSStyleSelector.cpp:
     11        (WebCore::CSSStyleSelector::applyProperty):
     12
    1132011-08-09  Dominic Cooney  <dominicc@chromium.org>
    214
  • trunk/Source/WebCore/css/CSSStyleSelector.cpp

    r92742 r92749  
    47694769        FontDescription fontDescription = m_style->fontDescription();
    47704770        fontDescription.setScript(localeToScriptCodeForFontSelection(m_style->locale()));
    4771         if (m_style->setFontDescription(fontDescription))
    4772             m_fontDirty = true;
     4771        setFontDescription(fontDescription);
    47734772        return;
    47744773    }
Note: See TracChangeset for help on using the changeset viewer.