chromium/third_party/blink/web_tests/fast/sub-pixel/sub-pixel-accumulates-to-layers.html


<!DOCTYPE html>
<html>
<head>
<style>
body {
    margin: 0;
    zoom: 0.9;
    transform: scale(40);
    -webkit-transform-origin: 0 0;
    overflow: hidden;
}

.container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 16px;
    height: 16px;
}

.container > div {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1.6px;
    height: 8px;
    margin-left:  -0.8px;

    background-color: red;
}
.rotated > div {
    background-color: green !important;
    transform: rotateZ(0);
}
</style>
</head>
<body>
    <div class="container"><div></div></div>
    <div class="container rotated"><div></div></div>
</body>
</html>