https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 6c9ce83bf002cce2799ffa270c6eeb4c1227d972 authored by ffxbld on 07 February 2013, 02:23:21 UTC
Added FENNEC_19_0b5_RELEASE FENNEC_19_0b5_BUILD2 tag(s) for changeset 20d099b63e84. DONTBUILD CLOSED TREE a=release
Tip revision: 6c9ce83
test_bug394057.html
<!DOCTYPE HTML>
<html lang="en">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=394057
-->
<head>
  <title>Test for Bug 394057</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <style type="text/css">

  #display { background: yellow; color: black; font-family: serif; }

  </style>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=394057">Mozilla Bug 394057</a>
<table id="display"><tr><td>MmMmMm...iiiIIIlll---</td></tr></table>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script class="testbody" type="text/javascript">

/** Test for Bug 394057 **/

SimpleTest.waitForExplicitFinish();
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');

var tableElement = document.getElementById("display");

var CC = Components.classes;
var CI = Components.interfaces;

var fe =
  CC["@mozilla.org/gfx/fontenumerator;1"].createInstance(CI.nsIFontEnumerator);
var serifFonts = fe.EnumerateFonts("x-western", "serif", {});
var monospaceFonts = fe.EnumerateFonts("x-western", "monospace", {});

function table_width_for_font(font) {
  tableElement.style.fontFamily = '"' + font + '"';
  var result = tableElement.offsetWidth;
  tableElement.style.fontFamily = "";
  return result;
}

var serifIdx = 0;
var monospaceIdx = 0;
var monospaceWidth, serifWidth;
monospaceWidth = table_width_for_font(monospaceFonts[monospaceIdx]);
for (serifIdx in serifFonts) {
  serifWidth = table_width_for_font(serifFonts[serifIdx]);
  if (serifWidth != monospaceWidth)
    break;
}
if (serifWidth == monospaceWidth) {
  for (monospaceIdx in monospaceFonts) {
    monospaceWidth = table_width_for_font(monospaceFonts[monospaceIdx]);
    if (serifWidth != monospaceWidth)
      break;
  }
}

isnot(serifWidth, monospaceWidth,
      "can't find serif and monospace fonts of different width");

var prefs =
  CC["@mozilla.org/preferences-service;1"].getService(CI.nsIPrefBranch);
prefs.setCharPref('font.name.serif.x-western', serifFonts[serifIdx]);

var serifWidthFromPref;
setTimeout(setTimeout, 0, step2, 0);
function step2() {
    netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
    serifWidthFromPref = tableElement.offsetWidth;
    prefs.setCharPref('font.name.serif.x-western',
                        monospaceFonts[monospaceIdx]);
    setTimeout(setTimeout, 0, step3, 0);
}
var monospaceWidthFromPref;
function step3() {
    netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
    monospaceWidthFromPref = tableElement.offsetWidth;
    prefs.clearUserPref('font.name.serif.x-western');

    is(serifWidthFromPref, serifWidth,
       "changing font pref should change width of table (serif)");
    is(monospaceWidthFromPref, monospaceWidth,
       "changing font pref should change width of table (monospace)");
    SimpleTest.finish();
}

</script>
</pre>
</body>
</html>

back to top