mirror of
https://github.com/servo/servo.git
synced 2025-06-20 07:08:59 +01:00
This was making `box-shadow` not show up in many cases, in particular, but the effects were not limited to that.
11 lines
360 B
HTML
11 lines
360 B
HTML
<html>
|
|
<body>
|
|
<div style="position: absolute; top: 0px; left: 0px;">
|
|
<div style="position: absolute; background: green; top: 0; margin-left: 512px; width: 20px; height: 20px;"></div>
|
|
|
|
<!-- This position:fixed sibling should force its sibling to be layerized. -->
|
|
<div style="position: fixed;"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|