summaryrefslogtreecommitdiffstats
path: root/dom/svg/test/test_getElementById.xhtml
blob: 863f520474ec0ab49b50ca51ed2088b6f5fa7f61 (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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Test getElementById behaviour</title>
  <script type="text/javascript" src="/MochiKit/packed.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="matrixUtils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<p id="display"></p>
<div id="content">
  <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="1" id="svg">
    <!-- decoy element, same Id but not a <g> -->
    <rect id="g"/>
    <svg id="inner">
      <!-- the one we want to find -->
      <g id="g"/>
      <!-- check we don't get confused by CSS selectors -->
      <g id="foo bar"/>
      <g id="goo > car"/>
      <g id="hoo~dar"/>
      <g id="ioo+ear"/>
    </svg>
    <g id="g2"/>
  </svg>
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
<![CDATA[

SimpleTest.waitForExplicitFinish();

function main()
{
  var svgns = "http://www.w3.org/2000/svg";
  
  var svg = document.getElementById("inner");
  
  is(svg.getElementById("g").nodeName, "g", "expected to find g element child");
  is(svg.getElementById("foo bar").nodeName, "g", "expected to find foo bar element child");
  is(svg.getElementById("goo > car").nodeName, "g", "expected to find goo > car element child");
  is(svg.getElementById("hoo~dar").nodeName, "g", "expected to find hoo~dar element child");
  is(svg.getElementById("ioo+ear").nodeName, "g", "expected to find ioo+ear element child");
  
  is(svg.getElementById("g2"), null, "did not expect to find an element with id g2");

  // no element with Id = "g3" in the document at all
  is(svg.getElementById("g3"), null, "did not expect to find an element with id g3");
  
  svg = document.createElementNS(svgns, "svg");
  
  var c = document.createElementNS(svgns, "circle");
  c.setAttribute("id", "c");
  svg.appendChild(c);

  is(svg.getElementById("c").nodeName, "circle", "expected to find circle element child");

  SimpleTest.finish();
}

window.addEventListener("load", main, false);

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