gecko/layout/base/crashtests/926728.html
Kearwood (Kip) Gilbert a5279344bb Bug 926728 - Add crashtest to ensure that assertion is not fired when recalculating the position of a sticky with ib-split siblings. r=corey
- Added crashtest to ensure that the "Should be starting from the first
  continuation" assertion is not fired when recalculating the position of a
  sticky with ib-split siblings.
2014-04-25 15:29:50 -07:00

14 lines
307 B
HTML

<!DOCTYPE html>
<html>
<body>
<span id="x" style="position: sticky; bottom: 75px;">
<div></div>
</span>
<script>
document.addEventListener("MozReftestInvalidate", function() {
document.getElementById('x').style.bottom = '-3000px';
});
</script>
</body>
</html>