RESOLVED FIXED 175382
Parse font-display
https://bugs.webkit.org/show_bug.cgi?id=175382
Summary Parse font-display
Myles C. Maxfield
Reported 2017-08-09 08:18:01 PDT
Parse font-display
Attachments
WIP (11.51 KB, patch)
2017-08-09 09:02 PDT, Myles C. Maxfield
no flags
WIP (11.89 KB, patch)
2017-08-09 18:19 PDT, Myles C. Maxfield
no flags
Patch (16.44 KB, patch)
2017-08-10 00:11 PDT, Myles C. Maxfield
simon.fraser: review+
Patch for committing (22.28 KB, patch)
2017-08-14 14:42 PDT, Myles C. Maxfield
no flags
Myles C. Maxfield
Comment 1 2017-08-09 09:02:12 PDT
Radar WebKit Bug Importer
Comment 2 2017-08-09 15:34:33 PDT
Myles C. Maxfield
Comment 3 2017-08-09 18:19:43 PDT
Myles C. Maxfield
Comment 4 2017-08-10 00:11:04 PDT
Simon Fraser (smfr)
Comment 5 2017-08-14 13:47:41 PDT
Comment on attachment 317787 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=317787&action=review > Source/WebCore/css/CSSFontFace.cpp:409 > + iterateClients(m_clients, [&](Client& client) { > + client.fontPropertyChanged(*this); > + }); Should you detect whether it's being set to the existing values, and therefore hasn't changed? > Source/WebCore/css/CSSValueKeywords.in:1354 > +swap > +fallback > +optional We usually list them all, and comment out the replicated ones.
Myles C. Maxfield
Comment 6 2017-08-14 14:42:49 PDT
Created attachment 318063 [details] Patch for committing
WebKit Commit Bot
Comment 7 2017-08-14 17:04:01 PDT
Comment on attachment 318063 [details] Patch for committing Clearing flags on attachment: 318063 Committed r220725: <http://trac.webkit.org/changeset/220725>
Darin Adler
Comment 8 2017-08-18 15:22:07 PDT
Comment on attachment 318063 [details] Patch for committing View in context: https://bugs.webkit.org/attachment.cgi?id=318063&action=review > Source/WebCore/css/CSSFontFace.cpp:273 > + if (ranges.size() == m_ranges.size()) { > + bool same = true; > + for (size_t i = 0; i < ranges.size(); ++i) { > + if (ranges[i] != m_ranges[i]) { > + same = false; > + break; > + } > + } > + if (same) > + return true; > } This should just be: if (ranges == m_ranges) return true; Vector already has an operator== that does this.
Myles C. Maxfield
Comment 9 2017-08-21 16:04:34 PDT
Note You need to log in before you can comment on or make changes to this bug.