Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: b5dabf405166b263117c36d7dd26976d4a93636d (plain) (blame)
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
org.eclipse.wst.html.core.tests.parser.ElementTest3
Source :
<x:a><b>c</b></x:a>


StructuredDocument Regions :
[0, 5] (<x:a>)
[5, 8] (<b>)
[8, 9] (c)
[9, 13] (</b>)
[13, 19] (</x:a>)

Tree :
#document
--x:a/x:a@[0, 5] (<x:a>)@[13, 19] (</x:a>)
----b/b@[5, 8] (<b>)@[9, 13] (</b>)
------#text(c)@[8, 9] (c)

a.tagName=a
Source :
<a><b>c</b></a>


StructuredDocument Regions :
[0, 3] (<a>)
[3, 6] (<b>)
[6, 7] (c)
[7, 11] (</b>)
[11, 15] (</a>)

Tree :
#document
--a/a@[0, 3] (<a>)@[11, 15] (</a>)
----b/b@[3, 6] (<b>)@[7, 11] (</b>)
------#text(c)@[6, 7] (c)

a.tagName=y:a
Source :
<y:a><b>c</b></y:a>


StructuredDocument Regions :
[0, 5] (<y:a>)
[5, 8] (<b>)
[8, 9] (c)
[9, 13] (</b>)
[13, 19] (</y:a>)

Tree :
#document
--y:a/y:a@[0, 5] (<y:a>)@[13, 19] (</y:a>)
----b/b@[5, 8] (<b>)@[9, 13] (</b>)
------#text(c)@[8, 9] (c)

Source :
<y:a><b>c</b></y:a>


StructuredDocument Regions :
[0, 5] (<y:a>)
[5, 8] (<b>)
[8, 9] (c)
[9, 13] (</b>)
[13, 19] (</y:a>)

Tree :
#document
--y:a/y:a@[0, 5] (<y:a>)@[13, 19] (</y:a>)
----b/b@[5, 8] (<b>)@[9, 13] (</b>)
------#text(c)@[8, 9] (c)

Back to the top