1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/imptests/editing/css/reset.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +/* Make sure various CSS values are what are expected, so that tests work 1.5 + * right. */ 1.6 +body { font-family: serif } 1.7 +/* http://www.w3.org/Bugs/Public/show_bug.cgi?id=12154 1.8 + * https://bugzilla.mozilla.org/show_bug.cgi?id=589124 1.9 + * https://bugs.webkit.org/show_bug.cgi?id=56400 */ 1.10 +b, strong { font-weight: bold } 1.11 +.bold { font-weight: bold } 1.12 +.notbold { font-weight: normal } 1.13 +.underline { text-decoration: underline } 1.14 +.line-through { text-decoration: line-through } 1.15 +.underline-and-line-through { text-decoration: underline line-through } 1.16 +#purple { color: purple } 1.17 +/* https://bugs.webkit.org/show_bug.cgi?id=56670 */ 1.18 +dfn { font-style: italic } 1.19 +/* Opera has weird default blockquote style */ 1.20 +blockquote { margin: 1em 40px } 1.21 +/* Some tests assume links are blue, for the sake of argument, but they aren't 1.22 + * blue in any browser. And :visited definitely isn't blue, except in engines 1.23 + * like Gecko that lie. 1.24 + * 1.25 + * This should really be #00e, probably. See: 1.26 + * http://www.w3.org/Bugs/Public/show_bug.cgi?id=13330 */ 1.27 +:link, :visited { color: blue } 1.28 +/* http://www.w3.org/Bugs/Public/show_bug.cgi?id=14066 1.29 + * https://bugs.webkit.org/show_bug.cgi?id=68392 */ 1.30 +quasit { text-align: inherit }