gecko/layout/reftests/position-dynamic-changes/mixed-abspos-root/mixed-dimentionN-ref.html
Ehsan Akhgari 14d4122730 Bug 157681 - Part 1: Add a test suite to make sure that dynamic changes to the position CSS properties work correctly; r=dbaron
These series of tests attempt to ensure conformance to the CSS 2.1
sections 10.3.7 and 10.6.4.
2012-06-06 00:53:33 -04:00

22 lines
448 B
HTML

<!DOCTYPE html>
<html id="parent">
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="../handleprop.js" type="text/javascript"></script>
<style>
#child {
width: 100px;
height: 100px;
left: 300px;
top: 200px;
}
</style>
</head>
<body>
<div id="child">
<div class="floatLeft"></div>
<div class="floatLeft"></div>
</div>
</body>
</html>