blob: 0f3f20cf2b0669ab9016b5c44b138c25954eb291 (
plain)
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
|
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<style>
summary {
/* Hide the triangle for comparing with div in reftest. */
list-style-type: none;
column-count: 3;
column-rule: 1px solid lightgray;
-webkit-column-count: 3;
-webkit-column-rule: 1px solid lightgray;
border: 1px solid lightblue;
background-color: lightgreen;
}
</style>
<body>
<details open>
<summary>
<p>line</p>
<p>line</p>
<p>line</p>
<p>line</p>
<p>line</p>
<p>line</p>
<p>line</p>
</summary>
<p>This is the details.</p>
</details>
</body>
</html>
|