mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 09:57:32 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
74
dom/svg/test/test_bbox.xhtml
Normal file
74
dom/svg/test/test_bbox.xhtml
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=449327
|
||||
-->
|
||||
<head>
|
||||
<title>Test for getBBox</title>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none"></div>
|
||||
|
||||
<iframe id="svg" src="bbox-helper.svg"></iframe>
|
||||
|
||||
<pre id="test">
|
||||
<script class="testbody" type="application/javascript">//<![CDATA[
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
|
||||
function run()
|
||||
{
|
||||
var doc = $("svg").contentDocument;
|
||||
|
||||
function isFuzzy(a, b, error, name)
|
||||
{
|
||||
ok(!(Math.abs(a - b) > error), name, "got " + a + ", expected " + b + " (within " + error + ")");
|
||||
}
|
||||
|
||||
function getBBox(id) {
|
||||
return doc.getElementById(id).getBBox();
|
||||
}
|
||||
function checkBBox(id, x, y, width, height, error) {
|
||||
var bbox = getBBox(id);
|
||||
isFuzzy(bbox.x, x, error, id + ".getBBox().x");
|
||||
isFuzzy(bbox.y, y, error, id + ".getBBox().y");
|
||||
isFuzzy(bbox.width, width, error, id + ".getBBox().width");
|
||||
isFuzzy(bbox.height, height, error, id + ".getBBox().height");
|
||||
}
|
||||
function compareBBox(id1, id2) {
|
||||
var bbox1 = getBBox(id1);
|
||||
var bbox2 = getBBox(id2);
|
||||
is(bbox1.x, bbox2.x, id1 + ".getBBox().x");
|
||||
is(bbox1.y, bbox2.y, id1 + ".getBBox().y");
|
||||
isFuzzy(bbox1.width, bbox2.width, 0.0002, id1 + ".getBBox().width");
|
||||
is(bbox1.height, bbox2.height, id1 + ".getBBox().height");
|
||||
}
|
||||
function compareBBoxHeight(id1, id2) {
|
||||
var bbox1 = getBBox(id1);
|
||||
var bbox2 = getBBox(id2);
|
||||
is(bbox1.height, bbox2.height, id1 + ".getBBox().height");
|
||||
}
|
||||
|
||||
checkBBox("fO", 10, 10, 100, 100, 0.0);
|
||||
checkBBox("i", 10, 10, 100, 100, 0.0);
|
||||
compareBBoxHeight("a", "b");
|
||||
compareBBoxHeight("a", "y");
|
||||
compareBBox("b", "tspan");
|
||||
compareBBoxHeight("text", "lrmText");
|
||||
checkBBox("v", 95, 45, 10, 155, 0.001);
|
||||
checkBBox("h", 195, 45, 105, 55, 0.001);
|
||||
checkBBox("e", 95, 95, 10, 10, 0.001);
|
||||
|
||||
SimpleTest.finish();
|
||||
}
|
||||
|
||||
window.addEventListener("load", run, false);
|
||||
|
||||
//]]></script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue