The calculation of aOverflow rect for a placeholder contained in a transformed stacking context didn't take the transform into account, leading to an incorrect rect which artificially inflated the calculated rebuild region. Differential Revision: https://phabricator.services.mozilla.com/D21168
21 lines
249 B
HTML
21 lines
249 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
margin: 0px;
|
|
}
|
|
div {
|
|
left: 50px;
|
|
width:100px;
|
|
height:100px;
|
|
display: inline-block;
|
|
position: absolute;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|