chromium/third_party/blink/web_tests/fast/css/sticky/sticky-style-change-expected.html

<!DOCTYPE html>
<html>
<head>
<style>
    body {
        margin: 0;
    }

    .absolute-box {
        position: absolute;
        top: 50px;
        height: 50px;
        width: 100%;
        background-color: green;
    }
</style>
</head>
<body>
  <div class="absolute-box"></div>
</body>
</html>