diff options
author | mhm@chromium.org <mhm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-11 03:29:02 +0000 |
---|---|---|
committer | mhm@chromium.org <mhm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-11 03:29:02 +0000 |
commit | 179e94a5546177ed99df5c0ebc9fbf737261adbc (patch) | |
tree | ace7dda02305083758f161b66ffb9e9583a1277e /chrome/common | |
parent | 7d73a40524c9e1cdb5861299af3c521ce746edc9 (diff) | |
download | chromium_src-179e94a5546177ed99df5c0ebc9fbf737261adbc.zip chromium_src-179e94a5546177ed99df5c0ebc9fbf737261adbc.tar.gz chromium_src-179e94a5546177ed99df5c0ebc9fbf737261adbc.tar.bz2 |
Fix incorrect CSS direction attribute for i18n Chrome Extension docs.
The "dir" should rather be "direction", it was just valid as an attribute for the tag. To set it as a style, you would need to use "direction"
BUG=none
TEST=none, did a mini extension
Review URL: http://codereview.chromium.org/6171006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70996 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/extensions/docs/i18n.html | 2 | ||||
-rw-r--r-- | chrome/common/extensions/docs/static/i18n.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/extensions/docs/i18n.html b/chrome/common/extensions/docs/i18n.html index d5e3bb9..7612a99 100644 --- a/chrome/common/extensions/docs/i18n.html +++ b/chrome/common/extensions/docs/i18n.html @@ -586,7 +586,7 @@ Here's an example of using <code>@@bidi_*</code> messages in a CSS file: </p> <pre>body { - <b>dir: __MSG_@@bidi_dir__;</b> + <b>direction: __MSG_@@bidi_dir__;</b> } div#header { diff --git a/chrome/common/extensions/docs/static/i18n.html b/chrome/common/extensions/docs/static/i18n.html index 4d0f9b3..abe5c9e 100644 --- a/chrome/common/extensions/docs/static/i18n.html +++ b/chrome/common/extensions/docs/static/i18n.html @@ -265,7 +265,7 @@ Here's an example of using <code>@@bidi_*</code> messages in a CSS file: <pre> body { - <b>dir: __MSG_@@bidi_dir__;</b> + <b>direction: __MSG_@@bidi_dir__;</b> } div#header { |