Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7172ef4270bc9b2b35e668f40c64dd275a6c158d (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
org.eclipse.wst.html.core.tests.parser.EntityTest2
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>a&amp;gt;</p>


StructuredDocument Regions :
[0, 3] (<p>)
[3, 4] (a)
[4, 9] (&amp;)
[9, 12] (gt;)
[12, 16] (</p>)

Tree :
#document
--p/p@[0, 3] (<p>)@[12, 16] (</p>)
----#text(a&gt;)@{[3, 4] (a),[4, 9] (&amp;),[9, 12] (gt;)}

Back to the top