Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-content-fractional-offset-expected.html |
| diff --git a/third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-content-fractional-offset-expected.html b/third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-content-fractional-offset-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f64c04895d0621a7e3f0611d1fc5495787107e6f |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/compositing/overflow/overflow-scroll-content-fractional-offset-expected.html |
| @@ -0,0 +1,37 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +.layout-container { |
| + width: 212px; |
| + position: relative; |
| +} |
| +.position-container { |
| + position: relative; |
| + width: 204px; |
| + margin-left: auto; |
| + margin-right: auto; |
| +} |
| + |
| +#overflow { |
| + width: 50%; |
| + height: 100px; |
| + overflow: scroll; |
| + position: absolute; |
| +} |
| + |
| +.spacer { |
| + background: #0f0; |
| + height: 2000px; |
| + width: 100%; |
| +} |
| +</style> |
| + |
| +<body> |
| + <div class="layout-container"> |
| + <div class="position-container"> |
| + <div id="overflow"> |
| + <div class="spacer"> |
| + </div> |
| + </div> |
| + </div> |
| + </div> |
| +</body> |