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