Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e892cf29dcfbe48ed9d4f61a1ef150601aec0a26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
org.eclipse.wst.html.core.tests.parser.TextTest
Source :
<a>hello &amp;lt;</a>


StructuredDocument Regions :
[0, 3] (<a>)
[3, 9] (hello )
[9, 14] (&amp;)
[14, 17] (lt;)
[17, 21] (</a>)

Tree :
#document
--a/a@[0, 3] (<a>)@[17, 21] (</a>)
----#text(hello &lt;)@{[3, 9] (hello ),[9, 14] (&amp;),[14, 17] (lt;)}

hello &lt;

Back to the top