diff options
author | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-06 22:19:26 +0000 |
---|---|---|
committer | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-06 22:19:26 +0000 |
commit | 52bd99fd4282ce282331d0bf7c86e6ab886d148a (patch) | |
tree | cc8ae01126fd741898e404b5b1903d7100f57f7c /chrome | |
parent | ee675da013e570cfe9984b8b1193e44b119f2420 (diff) | |
download | chromium_src-52bd99fd4282ce282331d0bf7c86e6ab886d148a.zip chromium_src-52bd99fd4282ce282331d0bf7c86e6ab886d148a.tar.gz chromium_src-52bd99fd4282ce282331d0bf7c86e6ab886d148a.tar.bz2 |
Fix issue where the favicon got centered vertically in RTL mode instead of
keeping the value from the previous rule. The default value for
background-position-y is center if not specified.
http://crbug.com/11549
Review URL: http://codereview.chromium.org/113059
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15465 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/resources/history.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/resources/history.html b/chrome/browser/resources/history.html index 8a3195e..81c72e5 100644 --- a/chrome/browser/resources/history.html +++ b/chrome/browser/resources/history.html @@ -840,7 +840,7 @@ html[dir='rtl'] .time { padding:1px 0px 4px 22px; } html[dir='rtl'] .entry .title a { - background-position:right; + background-position-x:right; padding-left:0px; padding-right:22px; } |