Index: LayoutTests/compositing/squashing/squash-overflow-hidden-contents-expected.html |
diff --git a/LayoutTests/compositing/squashing/squash-overflow-hidden-contents-expected.html b/LayoutTests/compositing/squashing/squash-overflow-hidden-contents-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a5b90bcf32ad882cb1f926e23dafc51b400aad32 |
--- /dev/null |
+++ b/LayoutTests/compositing/squashing/squash-overflow-hidden-contents-expected.html |
@@ -0,0 +1,25 @@ |
+<!DOCTYPE html> |
+<style type="text/css" media="screen"> |
+ .container { |
+ display: inline-block; |
+ width: 200px; |
+ height: 200px; |
+ overflow: hidden; |
+ margin: 10px; |
+ border: 1px solid black; |
+ } |
+ |
+ .inner { |
+ width: 100%; |
+ height: 1000px; |
+ background-color: blue; |
+ } |
+</style> |
+ |
+<!-- Test repainting when the graphicsLayer offsetFromRenderer changes --> |
+<!-- You should see one green square, and no red --> |
+<div class="container" style="position: relative;"> |
+ <div class="inner" style="position: relative;"> |
+ </div> |
+</div> |
+ |