Index: chrome/common/extensions/docs/static/experimental.fontSettings.html |
diff --git a/chrome/common/extensions/docs/static/experimental.fontSettings.html b/chrome/common/extensions/docs/static/experimental.fontSettings.html |
index 18851c29b1c16e85ec103cd5d00f46ac6dac908f..80de2e7140b18aa165c489214230f6f60fe40458 100644 |
--- a/chrome/common/extensions/docs/static/experimental.fontSettings.html |
+++ b/chrome/common/extensions/docs/static/experimental.fontSettings.html |
@@ -40,14 +40,14 @@ font covers, such as Latin.</p> |
<pre> |
chrome.experimental.fontSettings.getFont( |
{ genericFamily: 'standard', script: 'Arab' }, |
- function(details) { console.log(details.fontName); } |
+ function(details) { console.log(details.fontId); } |
); |
</pre> |
<p>The next snippet sets the sans-serif font for Japanese.</p> |
<pre> |
chrome.experimental.fontSettings.setFont( |
- { genericFamily: 'sansserif', script: 'Jpan', fontName: 'MS PGothic' } |
+ { genericFamily: 'sansserif', script: 'Jpan', fontId: 'MS PGothic' } |
); |
</pre> |