From 179e94a5546177ed99df5c0ebc9fbf737261adbc Mon Sep 17 00:00:00 2001 From: "mhm@chromium.org" Date: Tue, 11 Jan 2011 03:29:02 +0000 Subject: 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 --- chrome/common/extensions/docs/i18n.html | 2 +- chrome/common/extensions/docs/static/i18n.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/common') 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 @@bidi_* messages in a CSS file:

body {
-  dir: __MSG_@@bidi_dir__;
+  direction: __MSG_@@bidi_dir__;
 }
 
 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 @@bidi_* messages in a CSS file:
 
 
 body {
-  dir: __MSG_@@bidi_dir__;
+  direction: __MSG_@@bidi_dir__;
 }
 
 div#header {
-- 
cgit v1.1