Bug 1839315: part 4) Link from `SheetLoadData::mWasAlternate` to spec. r=emilio DONTBUILD
[gecko.git] / layout / style / test / test_bug389464.html
blob2e05ed848fcf7263f133ca22c4537488872595f7
1 <!DOCTYPE HTML>
2 <html>
3 <!--
5 -->
6 <head>
7 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
8 <!-- above is to force x-western language group -->
9 <title>Test for preference not to use document colors</title>
10 <script src="/tests/SimpleTest/SimpleTest.js"></script>
11 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
12 <style type="text/css">
15 </style>
16 </head>
17 <body>
18 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=58048">Mozilla Bug 58048</a>
19 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=255411">Mozilla Bug 255411</a>
20 <div id="display">
22 <pre><font id="one" size="-1">text</font></pre>
23 <p><font id="two" size="-1">text</font></p>
25 </div>
26 <pre id="test">
27 <script class="testbody" type="text/javascript">
29 SimpleTest.waitForExplicitFinish();
31 var cs1 = getComputedStyle(document.getElementById("one"), "");
32 var cs2 = getComputedStyle(document.getElementById("two"), "");
34 SpecialPowers.pushPrefEnv({'set': [['variable.x-western', 25], ['fixed.x-western', 20]]}, part1);
36 function part1()
38 var fs1 = cs1.fontSize.match(/(.*)px/)[1];
39 var fs2 = cs2.fontSize.match(/(.*)px/)[1];
40 ok(fs1 < fs2, "<font size=-1> shrinks relative to font-family: -moz-fixed");
42 SimpleTest.finish();
45 </script>
46 </pre>
47 </body>
48 </html>