File: input.html

package info (click to toggle)
rust-swc-core 35.0.0~ds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 62,816 kB
  • sloc: javascript: 873; xml: 538; sh: 358; makefile: 35; python: 5
file content (72 lines) | stat: -rw-r--r-- 2,303 bytes parent folder | download | duplicates (2)
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
<!DOCTYPE html>
<html>
<body>

<h1>HTML Entity Example</h1>

<div>A space character: &AMP;</div>
<div>A space character: &amp;</div>

<div>A space character: &nbsp;</div>
<div>The less-than sign: &lt;</div>
<div>The greater-than sign: &gt;</div>
<div>The double quote sign: &quot;</div>
<div>The single quote sign: &apos;</div>
<div>The cent sign: &cent;</div>
<div>The pound sign: &pound;</div>
<div>The yen sign: &yen;</div>
<div>The euro sign: &euro;</div>
<div>The copyright sign: &copy;</div>
<div>The registered trade mark sign: &reg;</div>
<div>An a with a grave accent: a&#768;</div>
<div>An a with an acute accent: a&#769;</div>
<div>An a with a circumflex accent: a&#770;</div>
<div>An a with a tilde: a&#771;</div>
<div>An o with a grave accent: o&#768;</div>
<div>An o with an acute accent: o&#769;</div>
<div>An o with a circumflex accent: o&#770;</div>
<div>An o with a tilde: o&#771;</div>

<div>A space character: &&</div>
<div>I'm &notin; I tell you</div>

<a href="http://lmgtfy.com/?l=1&amp;q=rick+roll">tired meme</a>
<a href="#" onclick="window.location='?l=1&amp;q=rick+roll';return false">
    kablammo!
</a>

<div>&amp;#38;</div>
<div>&amp#38;</div>
<div>&amp#38</div>
<div>&amp#x26;</div>
<div>&amp#x26</div>
<div>&#38;amp</div>
<div>&amp#</div>
<div>&amp#1</div>
<div>&#8</div>
<div>&8</div>
<div>&#38;#a</div>
<div>&#38;#xb</div>
<div>&#38;#xj</div>

<div data-test="&amp;amp;"></div>
<div data-test="&amp;amp"></div>
<div data-test="&amp;#36"></div>
<div data-test="&amp;#x36"></div>
<div data-test="&unknown">&unknown</div>
<div data-test="&unknown;">&unknown;</div>
<div data-test="&u;">&u;</div>
<div data-test="&ampCounterClockwiseContourIntegral">&ampCounterClockwiseContourIntegral</div>
<div data-test="&amp;CounterClockwiseContourIntegral">&amp;CounterClockwiseContourIntegral</div>
<div data-test="&ampCounterClockwiseContourIntegral;">&ampCounterClockwiseContourIntegral;</div>
<div data-test="&amp;CounterClockwiseContourIntegral;">&amp;CounterClockwiseContourIntegral;</div>
<div data-test="&amp;amp">&amp;amp</div>
<div data-test="&amp;am">&amp;am</div>
<div data-test="&amp;;">&amp;;</div>
<div data-test="&amp;">&amp;</div>
<div data-test="&amp;#x">&amp;#x</div>
<div data-test="&amp;#x1">&amp;#x1</div>
<div data-test="&amp;#1">&amp;#1</div>
</body>
</html>