blob: c2cf2290dc50bbac574f478506a6b7b69c94699f [file] [log] [blame]
<!DOCTYPE html>
<html>
<!--
| Absolutely positioned children of overflow: hidden.
| The children are positioned to the left.
| https://www.w3.org/TR/CSS21/visufx.html
-->
<head>
<style>
body {
font-family: Roboto;
font-size: 16px;
}
.overflow {
width: 8em;
height: 8em;
overflow: hidden;
}
.positioned {
color: #FFFFFF;
background: #00CC00;
position: absolute;
top: 0;
left: 0;
width: 10em;
}
</style>
</head>
<body>
<div class="overflow">
<div class="positioned">PASS</div>
</div>
</body>
</html>