diff options
author | bors-servo <release+servo@mozilla.com> | 2013-10-06 20:37:07 -0700 |
---|---|---|
committer | bors-servo <release+servo@mozilla.com> | 2013-10-06 20:37:07 -0700 |
commit | f353150bca5db37e45cb1daed47c51b75604f317 (patch) | |
tree | 72d90c2f0627a29e4e45971bd2dcb9fab6a6d822 | |
parent | 6832f4feec2d92ff92e0ef037020478da45d7945 (diff) | |
parent | e45482b82545b88de89b933e2e8a2877a9c4099d (diff) | |
download | servo-f353150bca5db37e45cb1daed47c51b75604f317.tar.gz servo-f353150bca5db37e45cb1daed47c51b75604f317.zip |
auto merge of #1020 : SimonSapin/servo/external-UA-css, r=jdm
Oops, I broke the UA stylesheet in #1017. The fact that our tests still passed is not a good sign :/
-rw-r--r-- | src/components/main/css/user-agent.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/main/css/user-agent.css b/src/components/main/css/user-agent.css index 1b9d97c9f41..21ed239495b 100644 --- a/src/components/main/css/user-agent.css +++ b/src/components/main/css/user-agent.css @@ -58,17 +58,17 @@ ol, ul, dir, ol ul, ul ol, ul ul, ol ol { margin-top: 0; margin-bottom: 0 } u, ins { text-decoration: underline } - br:before { content: \"\\A\"; white-space: pre-line } + br:before { content: "\A"; white-space: pre-line } center { text-align: center } :link, :visited { text-decoration: underline } :focus { outline: thin dotted invert } /* Begin bidirectionality settings (do not change) */ -BDO[DIR=\"ltr\"] { direction: ltr; unicode-bidi: bidi-override } -BDO[DIR=\"rtl\"] { direction: rtl; unicode-bidi: bidi-override } +BDO[DIR="ltr"] { direction: ltr; unicode-bidi: bidi-override } +BDO[DIR="rtl"] { direction: rtl; unicode-bidi: bidi-override } -*[DIR=\"ltr\"] { direction: ltr; unicode-bidi: embed } -*[DIR=\"rtl\"] { direction: rtl; unicode-bidi: embed } +*[DIR="ltr"] { direction: ltr; unicode-bidi: embed } +*[DIR="rtl"] { direction: rtl; unicode-bidi: embed } @media print { h1 { page-break-before: always } |