blob: 423db652eedcde65f5a90e52c50c9a199c01aa21 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0px;
}
.hidTarget
{
height: 100px;
width: 100px;
position: absolute;
left: 200px;
background-color: green;
}
.sized
{
width: 200px;
}
.marginLeft
{
width: 100px;
height: 100px;
margin-left: 200px;
background-color: red;
}
p
{
position: absolute;
top: 300px;
}
</style>
</head>
<body>
<div class="hidTarget"></div>
<div align="center" class="sized">
<div class="marginLeft"></div>
</div>
<p>
<a href="https://bugs.webkit.org/show_bug.cgi?id=89515">89515</a>: REGRESSION(r113885): Margin not properly applied to elements with align=center<br>
There should be a green rectangle above with no red.
</p>
</body>
</html>