Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: webkit/tools/test_shell/resources/linux-fontconfig-config

Issue 1219002: linux: add a SlightHintedGeorgia font to test_shell (Closed)
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webkit/tools/test_shell/test_shell.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> 2 <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
3 <!-- /etc/fonts/fonts.conf file to configure system font access --> 3 <!-- /etc/fonts/fonts.conf file to configure system font access -->
4 <fontconfig> 4 <fontconfig>
5 <match target="pattern"> 5 <match target="pattern">
6 <test qual="any" name="family"> 6 <test qual="any" name="family">
7 <string>Times</string> 7 <string>Times</string>
8 </test> 8 </test>
9 <edit name="family" mode="assign"> 9 <edit name="family" mode="assign">
10 <string>Times New Roman</string> 10 <string>Times New Roman</string>
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 <test name="family" compare="eq"> 116 <test name="family" compare="eq">
117 <string>NonAntiAliasedSans</string> 117 <string>NonAntiAliasedSans</string>
118 </test> 118 </test>
119 <edit name="family" mode="assign"> 119 <edit name="family" mode="assign">
120 <string>Arial</string> 120 <string>Arial</string>
121 </edit> 121 </edit>
122 <edit name="antialias" mode="assign"> 122 <edit name="antialias" mode="assign">
123 <bool>false</bool> 123 <bool>false</bool>
124 </edit> 124 </edit>
125 </match> 125 </match>
126
127 <match target="pattern">
128 <test name="family" compare="eq">
129 <string>SlightHintedGeorgia</string>
130 </test>
131 <edit name="family" mode="assign">
132 <string>Georgia</string>
133 </edit>
134 <edit name="hintstyle" mode="assign">
135 <const>hintslight</const>
136 </edit>
137 </match>
126 </fontconfig> 138 </fontconfig>
OLDNEW
« no previous file with comments | « no previous file | webkit/tools/test_shell/test_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698