gecko-dev/layout/generic/crashtests/details-three-columns.html
Ting-Yu Lin 01065150c0 Bug 591737 - Add crashtest for details and summary. r=bz
--HG--
extra : commitid : DoO0dxy1ehj
extra : rebase_source : c49a244cc8ce1326b114af62c720a57d0589d836
2016-01-20 23:20:42 +08:00

31 lines
621 B
HTML

<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<style>
details {
-moz-column-count: 3;
-moz-column-rule: 1px solid lightgray;
-webkit-column-count: 3;
-webkit-column-rule: 1px solid lightgray;
border: 1px solid lightblue;
}
summary {
background-color: lightgreen;
}
</style>
<body>
<details open>
<summary>Summary</summary>
<p>line</p>
<p>line</p>
<p>line</p>
<p>line</p>
<p>line</p>
<p>line</p>
<p>line</p>
</details>
</body>
</html>