-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathfixture.xml
110 lines (95 loc) · 2.97 KB
/
fixture.xml
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
"https://www.puppycrawl.com/dtds/configuration_1_3.dtd">
<?xml-model href="project.rnc" type="application/relax-ng-compact-syntax"?>
<!-- foo -->
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="200"
height="100"
viewBox="0 0 200 100"
>
<title>Style inheritance and the use element</title>
<desc _attr="attr">
&anp; 〹
<![CDATA[
foo
]]>
bar
</desc>
<?pagebreak?>
<style></style>
<style> </style>
<style type="text/css">
circle { stroke-opacity: 0.7; }
.special circle { stroke: green; }
use { stroke: purple;
fill: orange; }
</style>
<script value="lint" />
<yaml myveryveryveryverylongattributename="myveryveryveryverylongattributevalue">
- 1
- 2
- 3
</yaml>
<!-- inner comment -->
<?pagebreak?>
<g class="special" style="fill: blue">
<circle id="c" cy="50" cx="50" r="40" stroke-width="20" />
</g>
<use xlink:href="#c" x="100" />
<ignored>
<!-- prettier-ignore-start -->
< ignored />
<!-- prettier-ignore-end -->
</ignored>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed at est eget enim consectetur accumsan. Aliquam pretium sodales ipsum quis dignissim. Sed id sem vel diam luctus fringilla. Aliquam quis egestas magna. Curabitur molestie lorem et odio porta, et molestie libero laoreet. Morbi rhoncus sagittis cursus. Nullam vehicula pretium consequat. Praesent porta ante at posuere sollicitudin. Nullam commodo tempor arcu, at condimentum neque elementum ut.
</p>
<span>
content
</span>
<div> text with space<div><hr/></div> </div>
<div>
even more
<content />
</div>
<div xml:space="preserve">
<content />
</div>
<div verylongattribute="verylongvalue" anotherverylongattribute="anotherverylongvalue" />
<div attr1='singleQuotes' att2="doubleQuotes" />
<!-- Basic sorting of xml attributes -->
<div z="third" y="second" x="first" />
<container xmlns:ios="iosURI" xmlns:android="androidURI">
<foo
xmlns:tools="toolsURI"
android:d="d"
android:c="c"
some="non-ns-ed-attributes"
here="!"
tools:other="thing"
android:b="b"
xmlns="highest priority"
android:a="a">
<bar
xmlns:otherTools="otherToolsURI"
ios:d="d"
ios:c="c"
tools:other="thing"
another="one"
android:b="b"
otherTools:baz="bing"
ios:a="a" />
</foo>
<foo xmlns:foo="foo" foo:foo="foo" />
<foo foo:foo="foo" xmlns:foo="foo" />
</container>
<EscapeNeeded name="Pete "Maverick" Mitchell"/>
<NoEscapeNeeded>He said, "Don't quote me."</NoEscapeNeeded>
<NoEscapeNeeded name='Pete "Maverick" Mitchell'/>
<NoEscapeNeeded name="Pete 'Maverick' Mitchell"/>
<xsl:text>slide </xsl:text>
</svg>
<!-- bar -->