mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
18 lines
297 B
HTML
18 lines
297 B
HTML
<html>
|
|
<title>
|
|
`overflow: hidden` on #second has no effect on #abs because its CB is #first.
|
|
</title>
|
|
<head>
|
|
<style>
|
|
#first {
|
|
height: 200px;
|
|
width: 200px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="first"></div>
|
|
</body>
|
|
</html>
|