Title: [152200] trunk/Source/WebInspectorUI
Revision
152200
Author
[email protected]
Date
2013-06-28 18:39:20 -0700 (Fri, 28 Jun 2013)

Log Message

Update Apple System fonts in auto-complete
https://bugs.webkit.org/show_bug.cgi?id=118205
<rdar://problem/14308488>

Reviewed by Joseph Pecoraro.

Update for the new Apple System font names, and remove some invalid entries.

* UserInterface/CSSKeywordCompletions.js: General cleanup. Note that
"apple-system-short-caption2" looks like it was accidentally omitted. It wasn't :)

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (152199 => 152200)


--- trunk/Source/WebInspectorUI/ChangeLog	2013-06-29 01:25:43 UTC (rev 152199)
+++ trunk/Source/WebInspectorUI/ChangeLog	2013-06-29 01:39:20 UTC (rev 152200)
@@ -1,3 +1,16 @@
+2013-06-28  Dean Jackson  <[email protected]>
+
+        Update Apple System fonts in auto-complete
+        https://bugs.webkit.org/show_bug.cgi?id=118205
+        <rdar://problem/14308488>
+
+        Reviewed by Joseph Pecoraro.
+
+        Update for the new Apple System font names, and remove some invalid entries.
+
+        * UserInterface/CSSKeywordCompletions.js: General cleanup. Note that
+        "apple-system-short-caption2" looks like it was accidentally omitted. It wasn't :)
+
 2013-06-28  James Craig  <[email protected]>
 
         Web Inspector: AX: VoiceOver speaks all inspector search fields as 'required'

Modified: trunk/Source/WebInspectorUI/UserInterface/CSSKeywordCompletions.js (152199 => 152200)


--- trunk/Source/WebInspectorUI/UserInterface/CSSKeywordCompletions.js	2013-06-29 01:25:43 UTC (rev 152199)
+++ trunk/Source/WebInspectorUI/UserInterface/CSSKeywordCompletions.js	2013-06-29 01:39:20 UTC (rev 152200)
@@ -332,7 +332,11 @@
         "-webkit-control", "status-bar", "italic", "oblique", "small-caps", "normal", "bold", "bolder", "lighter",
         "100", "200", "300", "400", "500", "600", "700", "800", "900", "xx-small", "x-small", "small", "medium",
         "large", "x-large", "xx-large", "-webkit-xxx-large", "smaller", "larger", "serif", "sans-serif", "cursive",
-        "fantasy", "monospace", "-webkit-body", "-webkit-pictograph", "-webkit-system-font", "-apple-system-headline1", "-apple-system-headline2", "-apple-system-headline3", "-apple-system-emphasizedbody", "-apple-system-body", "-apple-system-subheadline", "-apple-system-footnote", "-apple-system-emphasizedcaption1", "-apple-system-caption1", "-apple-system-emphasizedcaption2", "-apple-system-caption2"
+        "fantasy", "monospace", "-webkit-body", "-webkit-pictograph", "-webkit-system-font", "-apple-system-headline",
+        "-apple-system-body", "-apple-system-subheadline", "-apple-system-footnote", "-apple-system-caption1",
+        "-apple-system-caption2", "-apple-system-short-headline", "-apple-system-short-body",
+        "-apple-system-short-subheadline", "-apple-system-short-footnote", "-apple-system-short-caption1",
+        "-apple-system-tall-body"
     ],
     "dominant-baseline": [
         "middle", "auto", "central", "text-before-edge", "text-after-edge", "ideographic", "alphabetic", "hanging",
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to