tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_bug389464.html (1330B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <!--
      4 
      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">
     13 
     14 
     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">
     21 
     22 <pre><font id="one" size="-1">text</font></pre>
     23 <p><font id="two" size="-1">text</font></p>
     24 
     25 </div>
     26 <pre id="test">
     27 <script class="testbody" type="text/javascript">
     28 
     29 SimpleTest.waitForExplicitFinish();
     30 
     31 var cs1 = getComputedStyle(document.getElementById("one"), "");
     32 var cs2 = getComputedStyle(document.getElementById("two"), "");
     33 
     34 SpecialPowers.pushPrefEnv({'set': [['variable.x-western', 25], ['fixed.x-western', 20]]}, part1);
     35 
     36 function part1()
     37 {
     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");
     41 
     42    SimpleTest.finish();
     43 }
     44 
     45 </script>
     46 </pre>
     47 </body>
     48 </html>