tenfourfox/layout/reftests/bugs/467460-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

22 lines
402 B
HTML

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function m()
{
document.getElementById("f").style.position = "fixed";
}
</script>
</head>
<body onload="m();">
<div style="-moz-transform: translate(50px, 50px); border: 1px solid red; width: 7ch;">
A
<div id="f" style="left: 50px; top: 100px; border: 1px solid blue; width: 7ch;">
0
</div>
</div>
</body>
</html>