mirror of
https://github.com/servo/servo
synced 2026-05-10 00:52:08 +02:00
18 lines
497 B
HTML
18 lines
497 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS transforms: 'perspective' on a non-transformable element doesn't create a stacking context</title>
|
|
<link rel="author" title="Matt Woodrow" href="mailto:mwoodrow@mozilla.com">
|
|
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
|
|
<style>
|
|
html, body { margin: 0; padding: 0 }
|
|
#fixedmoves {
|
|
position: absolute;
|
|
background: green;
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="fixedmoves"></div>
|
|
</body>
|