gecko-dev/dom/svg/test/test_switch.xhtml
Brian Grinstead 0d460e3432 Bug 1544322 - Part 2.2 - Remove the [type] attribute for one-liner <script> tags loading files in /tests/SimpleTest/ in dom/ r=bzbarsky
This is split from the previous changeset since if we include dom/ the file size is too
large for phabricator to handle.

This is an autogenerated commit to handle scripts loading mochitest harness files, in
the simple case where the script src is on the same line as the tag.

This was generated with https://bug1544322.bmoattachments.org/attachment.cgi?id=9058170
using the `--part 2` argument.

Differential Revision: https://phabricator.services.mozilla.com/D27457

--HG--
extra : moz-landing-system : lando
2019-04-16 03:53:28 +00:00

100 lines
2.6 KiB
HTML

<html xmlns="http://www.w3.org/1999/xhtml">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=484176
-->
<head>
<title>Test SVG Switch</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=484176">Mozilla Bug 484176</a>
<p id="display"></p>
<div id="content"></div>
<iframe id="svg" src="switch-helper.svg"></iframe>
<pre id="test">
<script class="testbody" type="text/javascript">
<![CDATA[
SimpleTest.waitForExplicitFinish();
var test = 1;
function checkBounds(element, x, y, w, h) {
var bbox = element.getBBox();
var name = element.nodeName;
is(bbox.x, x, test + " " + name + ".getBBox().x");
is(bbox.y, y, test + " " + name + ".getBBox().y");
is(bbox.width, w, test + " " + name + ".getBBox().width");
is(bbox.height, h, test + " " + name + ".getBBox().height");
++test;
}
function checkWidth(element, w) {
var bbox = element.getBBox();
var name = element.nodeName;
is(bbox.width, w, test + " " + name + ".getBBox().width");
++test;
}
function run() {
// Set accept_languages to something we know
SpecialPowers.pushPrefEnv({"set": [["intl.accept_languages", "en-gb,en,it"]]}, run1);
}
function run1() {
try {
var doc = $("svg").contentDocument;
var s = doc.getElementById("s");
var first = doc.getElementById("first");
var second = doc.getElementById("second");
var third = doc.getElementById("third");
first.setAttribute("systemLanguage", "fr");
/* test for an exact match */
second.setAttribute("systemLanguage", "en-gb");
checkWidth(s, 50);
/* test for a close match i.e. the same language prefix */
second.setAttribute("systemLanguage", "en-us");
checkWidth(s, 50);
/* test that we pick the best match */
second.setAttribute("systemLanguage", "it");
checkWidth(s, 50);
/* test that we use the default if nothing matches */
second.setAttribute("systemLanguage", "fr");
checkWidth(s, 80);
/* test we still ignore non-matches */
second.removeAttribute("systemLanguage");
third.setAttribute("systemLanguage", "fr");
checkWidth(s, 50);
/* check what happens if nothing matches */
second.setAttribute("systemLanguage", "fr");
checkWidth(s, 0);
/* test that we pick the best match */
first.setAttribute("systemLanguage", "en");
second.setAttribute("systemLanguage", "en-gb");
checkWidth(s, 50);
} finally {
SimpleTest.finish();
}
}
window.addEventListener("load", run);
]]>
</script>
</pre>
</body>
</html>