Changeset 202983 in webkit


Ignore:
Timestamp:
Jul 8, 2016 9:42:20 AM (8 years ago)
Author:
Ryan Haddad
Message:

Unreviewed, rolling out r202945.
https://bugs.webkit.org/show_bug.cgi?id=159565

The test for this change is failing on all platforms.
(Requested by ryanhaddad on #webkit).

Reverted changeset:

"[Font Loading] The callback passed to document.fonts.ready
should always be called"
https://bugs.webkit.org/show_bug.cgi?id=158884
http://trac.webkit.org/changeset/202945

Patch by Commit Queue <commit-queue@webkit.org> on 2016-07-08

Location:
trunk
Files:
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r202982 r202983  
     12016-07-08  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r202945.
     4        https://bugs.webkit.org/show_bug.cgi?id=159565
     5
     6        The test for this change is failing on all platforms.
     7        (Requested by ryanhaddad on #webkit).
     8
     9        Reverted changeset:
     10
     11        "[Font Loading] The callback passed to document.fonts.ready
     12        should always be called"
     13        https://bugs.webkit.org/show_bug.cgi?id=158884
     14        http://trac.webkit.org/changeset/202945
     15
    1162016-07-08  Keith Miller  <keith_miller@apple.com>
    217
  • trunk/Source/WebCore/ChangeLog

    r202981 r202983  
     12016-07-08  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r202945.
     4        https://bugs.webkit.org/show_bug.cgi?id=159565
     5
     6        The test for this change is failing on all platforms.
     7        (Requested by ryanhaddad on #webkit).
     8
     9        Reverted changeset:
     10
     11        "[Font Loading] The callback passed to document.fonts.ready
     12        should always be called"
     13        https://bugs.webkit.org/show_bug.cgi?id=158884
     14        http://trac.webkit.org/changeset/202945
     15
    1162016-07-08  Nael Ouedraogo  <nael.ouedraogo@crf.canon.fr>
    217
  • trunk/Source/WebCore/css/FontFaceSet.cpp

    r202945 r202983  
    198198{
    199199    // FIXME: Fire a "loading" event asynchronously.
    200     m_isReady = false;
    201200}
    202201
  • trunk/Source/WebCore/css/FontFaceSet.h

    r202945 r202983  
    112112    HashMap<RefPtr<CSSFontFace>, Vector<Ref<PendingPromise>>> m_pendingPromises;
    113113    Optional<ReadyPromise> m_promise;
    114     bool m_isReady { true };
     114    bool m_isReady { false };
    115115};
    116116
Note: See TracChangeset for help on using the changeset viewer.