Changeset 185750 in webkit
- Timestamp:
- Jun 19, 2015, 9:58:14 AM (11 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UserInterface/Models/CSSKeywordCompletions.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r185741 r185750 1 2015-06-19 Jon Lee <jonlee@apple.com> 2 3 Update font and font-family keyword completions 4 https://bugs.webkit.org/show_bug.cgi?id=144558 5 <rdar://problem/20795292> 6 7 Reviewed by Timothy Hatcher. 8 9 * UserInterface/Models/CSSKeywordCompletions.js: Replace -webkit-system-font and 10 -apple-system-font with -apple-system, which is the recommended token for getting the 11 system font. Also add -title{1,2,3} for font, as they were missing, but already exist 12 in font-family. 13 1 14 2015-06-19 Joseph Pecoraro <pecoraro@apple.com> 2 15 -
trunk/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js
r184822 r185750 380 380 "100", "200", "300", "400", "500", "600", "700", "800", "900", "xx-small", "x-small", "small", "medium", 381 381 "large", "x-large", "xx-large", "-webkit-xxx-large", "smaller", "larger", "serif", "sans-serif", "cursive", 382 "fantasy", "monospace", "-webkit-body", "-webkit-pictograph", "- webkit-system-font", "-apple-system-font",382 "fantasy", "monospace", "-webkit-body", "-webkit-pictograph", "-apple-system", 383 383 "-apple-system-headline", "-apple-system-body", "-apple-system-subheadline", "-apple-system-footnote", 384 384 "-apple-system-caption1", "-apple-system-caption2", "-apple-system-short-headline", "-apple-system-short-body", 385 385 "-apple-system-short-subheadline", "-apple-system-short-footnote", "-apple-system-short-caption1", 386 "-apple-system-tall-body" 386 "-apple-system-tall-body", "-apple-system-title1", "-apple-system-title2", "-apple-system-title3" 387 387 ], 388 388 "dominant-baseline": [ … … 480 480 "font-family": [ 481 481 "serif", "sans-serif", "cursive", "fantasy", "monospace", "-webkit-body", "-webkit-pictograph", 482 "- webkit-system-font", "-apple-system-font", "-apple-system-headline", "-apple-system-body",482 "-apple-system", "-apple-system-headline", "-apple-system-body", 483 483 "-apple-system-subheadline", "-apple-system-footnote", "-apple-system-caption1", "-apple-system-caption2", 484 484 "-apple-system-short-headline", "-apple-system-short-body", "-apple-system-short-subheadline",
Note:
See TracChangeset
for help on using the changeset viewer.