summaryrefslogtreecommitdiffstats
path: root/dom/svg/test/test_text_2.html
blob: aa64bb8e2aedace3ce4e29310a7a68dbb1c852d6 (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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=655877
-->
<head>
  <meta charset=UTF-8>
  <title>Test for Bug 655877</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=655877">Mozilla Bug 655877</a>
<p id="display"></p>
<div id="content">
  <svg width="400" height="200">
    <text x="100" y="100" style="font: 16px sans-serif">
      abc אבג 123 דהו defg
    </text>
  </svg>
</div>

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

function close(x, y, message) {
  ok(Math.abs(x - y) < 1e-4, message);
}

function runTest() {
  var text = document.querySelector("text");

  // there are only 20 addressable characters
  is(text.getNumberOfChars(), 20, "getNumberOfChars");

  var sum, total = text.getComputedTextLength();

  close(text.getSubStringLength(0, 20), total, "getSubStringLength all");

  // add the advance of each glyph
  sum = 0;
  for (var i = 0; i < 20; i++) {
    sum += text.getSubStringLength(i, 1);
  }
  close(total, sum, "sum getSubStringLength 1");

  // split the text up into three chunks and add them together
  close(total, text.getSubStringLength(0, 6) +
               text.getSubStringLength(6, 8) +
               text.getSubStringLength(14, 6), "sum getSubStringLength 2");

  SimpleTest.finish();
}

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