Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 52cb3c90d31909078b5f6586ddbbc89337751bb0 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
org.eclipse.wst.html.core.tests.parser.EntityTest3
Source :
<p>a</p>


StructuredDocument Regions :
[0, 3] (<p>)
[3, 4] (a)
[4, 8] (</p>)

Tree :
#document
--p/p@[0, 3] (<p>)@[4, 8] (</p>)
----#text(a)@[3, 4] (a)

Source :
<p>ab</p>


StructuredDocument Regions :
[0, 3] (<p>)
[3, 5] (ab)
[5, 9] (</p>)

Tree :
#document
--p/p@[0, 3] (<p>)@[5, 9] (</p>)
----#text(ab)@[3, 5] (ab)

Source :
<p>ab&amp;</p>


StructuredDocument Regions :
[0, 3] (<p>)
[3, 5] (ab)
[5, 10] (&amp;)
[10, 14] (</p>)

Tree :
#document
--p/p@[0, 3] (<p>)@[10, 14] (</p>)
----#text(ab&)@{[3, 5] (ab),[5, 10] (&amp;)}

Source :
<p>ab&amp;c</p>


StructuredDocument Regions :
[0, 3] (<p>)
[3, 5] (ab)
[5, 10] (&amp;)
[10, 11] (c)
[11, 15] (</p>)

Tree :
#document
--p/p@[0, 3] (<p>)@[11, 15] (</p>)
----#text(ab&c)@{[3, 5] (ab),[5, 10] (&amp;),[10, 11] (c)}

Source :
<p>dab&amp;c</p>


StructuredDocument Regions :
[0, 3] (<p>)
[3, 6] (dab)
[6, 11] (&amp;)
[11, 12] (c)
[12, 16] (</p>)

Tree :
#document
--p/p@[0, 3] (<p>)@[12, 16] (</p>)
----#text(dab&c)@{[3, 6] (dab),[6, 11] (&amp;),[11, 12] (c)}

Source :
<p>dab&amp;ce</p>


StructuredDocument Regions :
[0, 3] (<p>)
[3, 6] (dab)
[6, 11] (&amp;)
[11, 13] (ce)
[13, 17] (</p>)

Tree :
#document
--p/p@[0, 3] (<p>)@[13, 17] (</p>)
----#text(dab&ce)@{[3, 6] (dab),[6, 11] (&amp;),[11, 13] (ce)}

Back to the top