michael@0: /* Make sure various CSS values are what are expected, so that tests work michael@0: * right. */ michael@0: body { font-family: serif } michael@0: /* http://www.w3.org/Bugs/Public/show_bug.cgi?id=12154 michael@0: * https://bugzilla.mozilla.org/show_bug.cgi?id=589124 michael@0: * https://bugs.webkit.org/show_bug.cgi?id=56400 */ michael@0: b, strong { font-weight: bold } michael@0: .bold { font-weight: bold } michael@0: .notbold { font-weight: normal } michael@0: .underline { text-decoration: underline } michael@0: .line-through { text-decoration: line-through } michael@0: .underline-and-line-through { text-decoration: underline line-through } michael@0: #purple { color: purple } michael@0: /* https://bugs.webkit.org/show_bug.cgi?id=56670 */ michael@0: dfn { font-style: italic } michael@0: /* Opera has weird default blockquote style */ michael@0: blockquote { margin: 1em 40px } michael@0: /* Some tests assume links are blue, for the sake of argument, but they aren't michael@0: * blue in any browser. And :visited definitely isn't blue, except in engines michael@0: * like Gecko that lie. michael@0: * michael@0: * This should really be #00e, probably. See: michael@0: * http://www.w3.org/Bugs/Public/show_bug.cgi?id=13330 */ michael@0: :link, :visited { color: blue } michael@0: /* http://www.w3.org/Bugs/Public/show_bug.cgi?id=14066 michael@0: * https://bugs.webkit.org/show_bug.cgi?id=68392 */ michael@0: quasit { text-align: inherit }