forked from manuelbieh/Details-Polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (50 loc) · 1.03 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf8" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>
<script src="details.polyfill.src.js"></script>
</head>
<body>
<details>
<summary>View more</summary>
<summary>(2nd summary will be ignored)</summary>
<p>Paragraph</p>
<div>Nested <span>elements</span></div>
Simple Textnode
</details>
<details>
Text before summary
<summary>View even more</summary>
<p>Paragraph</p>
<p>Paragraph 2</p>
Textnode
<div>Nested <span>elements</span></div>
Blablah Blablah Blablah Textnode
<p>Another paragraph</p>
</details>
<details>
Element without <summary />
<p>Text</p>
<div>Text <span>Text</span></div>
Blablah
Blablah
Blablah
</details>
<details>
<summary>4th details element</summary>
Text
<p>Text</p>
<div>Text <span>Text</span></div>
Text
Text
Text
<details>
<summary>Nested</summary>
<p>More more information</p>
</details>
<p>Text</p>
</details>
</body>
</html>