Jesse Schwartzentruber 4d2cb046da Bug 1346454 - Add a couple of crashtests. r=mats DONTBUILD
--HG--
extra : amend_source : a82dc4e2c7a6da22303e5e790d0bca1d540b3404
2019-05-27 02:45:43 +02:00

35 lines
414 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
ol {
list-style-position: inside;
column-width: calc(0px);
}
li {
float: left;
}
li:last-child {
padding-block-end: calc(50%);
float: none;
}
</style>
<script>
function boom(){
document.getElementById("tgt").style.display = "block";
}
</script>
</head>
<body onload=boom()>
<ol>
<li id=tgt></li>
<li></li>
<li></li>
</ol>
</body>
</html>