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

Side by Side Diff: webkit/tools/test_shell/resources/fonts.conf

Issue 2928011: linux: Add patterns for subpixel test to fonts.conf. (Closed)
Patch Set: Created 10 years, 5 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 | no next file » | 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="font"> 5 <match target="font">
6 <edit name="embeddedbitmap" mode="assign"><bool>false</bool></edit> 6 <edit name="embeddedbitmap" mode="assign"><bool>false</bool></edit>
7 </match> 7 </match>
8 8
9 <match target="pattern"> 9 <match target="pattern">
10 <test qual="any" name="family"> 10 <test qual="any" name="family">
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 <string>Arial</string> 195 <string>Arial</string>
196 </edit> 196 </edit>
197 <edit name="autohint" mode="assign"> 197 <edit name="autohint" mode="assign">
198 <bool>true</bool> 198 <bool>true</bool>
199 </edit> 199 </edit>
200 <edit name="hintstyle" mode="assign"> 200 <edit name="hintstyle" mode="assign">
201 <const>hintfull</const> 201 <const>hintfull</const>
202 </edit> 202 </edit>
203 </match> 203 </match>
204 204
205 <match target="pattern">
206 <test name="family" compare="eq">
207 <string>SubpixelEnabledArial</string>
208 </test>
209 <edit name="family" mode="assign">
210 <string>Arial</string>
211 </edit>
212 <edit name="rgba" mode="assign">
213 <const>rgb</const>
Evan Martin 2010/07/14 22:21:56 Isn't there another attr you need to specify for s
214 </edit>
215 </match>
216
217 <match target="pattern">
218 <test name="family" compare="eq">
219 <string>SubpixelDisabledArial</string>
220 </test>
221 <edit name="family" mode="assign">
222 <string>Arial</string>
223 </edit>
224 <edit name="rgba" mode="assign">
225 <const>none</const>
226 </edit>
227 </match>
228
205 </fontconfig> 229 </fontconfig>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698