2016-01-20 18:20:41 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!-- Any copyright is dedicated to the Public Domain.
|
|
|
|
- http://creativecommons.org/publicdomain/zero/1.0/ -->
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<style>
|
|
|
|
details {
|
|
|
|
background-color: orange;
|
|
|
|
overflow: auto;
|
|
|
|
width: 300px;
|
|
|
|
height: 200px;
|
|
|
|
}
|
2019-06-27 03:53:45 +03:00
|
|
|
summary {
|
2016-01-20 18:20:41 +03:00
|
|
|
/* Hide the triangle for comparing with div in reftest. */
|
|
|
|
list-style-type: none;
|
|
|
|
background-color: green;
|
|
|
|
overflow: auto;
|
|
|
|
width: 200px;
|
|
|
|
height: 100px;
|
|
|
|
}
|
2016-11-09 00:34:09 +03:00
|
|
|
div.tall {
|
|
|
|
background-color: blue;
|
|
|
|
border: 1px dotted purple;
|
|
|
|
height: 1000px;
|
|
|
|
width: 50px;
|
|
|
|
}
|
2016-01-20 18:20:41 +03:00
|
|
|
</style>
|
|
|
|
<body>
|
|
|
|
<details open>
|
2016-11-09 00:34:09 +03:00
|
|
|
<summary>
|
|
|
|
<div class="tall">
|
|
|
|
</div>
|
2016-01-20 18:20:41 +03:00
|
|
|
</summary>
|
2016-11-09 00:34:09 +03:00
|
|
|
<div class="tall">
|
|
|
|
</div>
|
2016-01-20 18:20:41 +03:00
|
|
|
</details>
|
|
|
|
</body>
|
|
|
|
</html>
|