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: 2cca97b7c9340c66ca471aa47fd2c1045c5d842f (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
org.eclipse.wst.html.core.tests.parser.DocTypeTest
Source :
<!DOCTYPE HTML><html></html>


StructuredDocument Regions :
[0, 15] (<!DOCTYPE HTML>)
[15, 21] (<html>)
[21, 28] (</html>)

Tree :
#document
--HTML(null)(null)@[0, 15] (<!DOCTYPE HTML>)
--html/html@[15, 21] (<html>)@[21, 28] (</html>)

Source :
<!DOCTYPE HTML SYSTEM "sytem"><html></html>


StructuredDocument Regions :
[0, 30] (<!DOCTYPE HTML SYSTEM "sytem">)
[30, 36] (<html>)
[36, 43] (</html>)

Tree :
#document
--HTML(null)(sytem)@[0, 30] (<!DOCTYPE HTML SYSTEM "sytem">)
--html/html@[30, 36] (<html>)@[36, 43] (</html>)

Source :
<!DOCTYPE HTML PUBLIC "public" "sytem"><html></html>


StructuredDocument Regions :
[0, 39] (<!DOCTYPE HTML PUBLIC "public" "sytem">)
[39, 45] (<html>)
[45, 52] (</html>)

Tree :
#document
--HTML(public)(sytem)@[0, 39] (<!DOCTYPE HTML PUBLIC "public" "sytem">)
--html/html@[39, 45] (<html>)@[45, 52] (</html>)

Source :
 <!DOCTYPE HTML PUBLIC "public" "sytem"><html></html>


StructuredDocument Regions :
[0, 1] ( )
[1, 40] (<!DOCTYPE HTML PUBLIC "public" "sytem">)
[40, 46] (<html>)
[46, 53] (</html>)

Tree :
#document
--#text( )@[0, 1] ( )
--HTML(public)(sytem)@[1, 40] (<!DOCTYPE HTML PUBLIC "public" "sytem">)
--html/html@[40, 46] (<html>)@[46, 53] (</html>)

Back to the top