summaryrefslogtreecommitdiffstats
path: root/dom/svg/test/test_scientific.html
blob: 482738514c382a9d90b793bf159438584bc52b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=302971
-->
<head>
  <title>Test for Bug 302971</title>
  <script type="application/javascript" 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=302971">Mozilla Bug 302971</a>
<p id="display"></p>
<div id="content" style="display: none"></div>

<iframe id="svg" src="scientific-helper.svg"></iframe>

<pre id="test">
<script class="testbody" type="application/javascript">
	SimpleTest.waitForExplicitFinish();

	function runTests()
	{
	var doc = $("svg").contentWindow.document;
	var rect = doc.getElementById("rect");
	var text = doc.getElementById("text");

	// ordinary

	rect.setAttribute("stroke-width", "5");
	is(doc.defaultView.getComputedStyle(rect, '').getPropertyValue("stroke-width"), "5", "Ordinary");

	// valid exponential notation

	rect.setAttribute("stroke-width", "4E1");
	is(doc.defaultView.getComputedStyle(rect, '').getPropertyValue("stroke-width"), "40", "Exponent");

	rect.setAttribute("stroke-width", "6e1");
	is(doc.defaultView.getComputedStyle(rect, '').getPropertyValue("stroke-width"), "60", "Lower-case Exponent");

	rect.setAttribute("stroke-width", "2E+1");
	is(doc.defaultView.getComputedStyle(rect, '').getPropertyValue("stroke-width"), "20", "Positive Exponent");

	rect.setAttribute("stroke-width", "100E-1");
	is(doc.defaultView.getComputedStyle(rect, '').getPropertyValue("stroke-width"), "10", "Negative Exponent");

	rect.setAttribute("stroke-width", "0.7E1");
	is(doc.defaultView.getComputedStyle(rect, '').getPropertyValue("stroke-width"), "7", "Floating Point with Exponent");

	rect.setAttribute("stroke-width", "50.0E-1");
	is(doc.defaultView.getComputedStyle(rect, '').getPropertyValue("stroke-width"), "5", "Floating Point with Negative Exponent");

	rect.setAttribute("stroke-width", "0.8E+1");
	is(doc.defaultView.getComputedStyle(rect, '').getPropertyValue("stroke-width"), "8", "Floating Point with Positive Exponent");

	rect.setAttribute("stroke-width", "4E1px");
	is(doc.defaultView.getComputedStyle(rect, '').getPropertyValue("stroke-width"), "40px", "Units");

	// check units that begin with the letter e

	var font_size = doc.defaultView.getComputedStyle(rect, '').getPropertyValue("font-size");

	rect.setAttribute("stroke-width", "1em");
	is(doc.defaultView.getComputedStyle(rect, '').getPropertyValue("stroke-width"), font_size, "em Units");

	// invalid exponential notation

	rect.setAttribute("stroke-width", "1E1.1");
	is(doc.defaultView.getComputedStyle(rect, '').getPropertyValue("stroke-width"), "1px", "Floating Point Exponent");

	rect.setAttribute("stroke-width", "E1");
	is(doc.defaultView.getComputedStyle(rect, '').getPropertyValue("stroke-width"), "1px", "No Mantissa");

	rect.setAttribute("stroke-width", "1 e");
	is(doc.defaultView.getComputedStyle(rect, '').getPropertyValue("stroke-width"), "1px", "Spaces");

	SimpleTest.finish();
	}

	window.addEventListener("load", runTests, false);
</script>
</pre>
</body>
</html>