Chromium Code Reviews| Index: LayoutTests/fast/sub-pixel/clip-zoomed-rect-box-with-overflow-expected.html |
| diff --git a/LayoutTests/fast/sub-pixel/clip-zoomed-rect-box-with-overflow-expected.html b/LayoutTests/fast/sub-pixel/clip-zoomed-rect-box-with-overflow-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a750bd6cea841c5e9df59d9a8f738f8e6038ab48 |
| --- /dev/null |
| +++ b/LayoutTests/fast/sub-pixel/clip-zoomed-rect-box-with-overflow-expected.html |
| @@ -0,0 +1,27 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| +<style> |
| +body { |
| + zoom:1.75; |
| +} |
| +.container { |
| + left: 10.5px; |
| + width: 52.7px; |
| + height: 100px; |
| + position: relative; |
| + transform: translateZ(0); |
| +} |
| +.test { |
| + border: solid 1px; |
| + position: absolute; |
| + width: 50px; |
| + right: 0px; |
| + height: 50px; |
| +} |
| +</style> |
| +</head> |
| +<body> |
| +<div class="container"> |
| + <div class="test"></div> |
| +</div> |