Index: third_party/WebKit/LayoutTests/compositing/root-scroller/resources/clipping-ancestor-is-composited-sibling-iframe.html |
diff --git a/third_party/WebKit/LayoutTests/compositing/root-scroller/resources/clipping-ancestor-is-composited-sibling-iframe.html b/third_party/WebKit/LayoutTests/compositing/root-scroller/resources/clipping-ancestor-is-composited-sibling-iframe.html |
deleted file mode 100644 |
index 1e859e6f8504beaa843370cf49397b7a2b10ef6a..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/compositing/root-scroller/resources/clipping-ancestor-is-composited-sibling-iframe.html |
+++ /dev/null |
@@ -1,54 +0,0 @@ |
-<!DOCTYPE html> |
-<style> |
- ::-webkit-scrollbar { |
- width: 0px; |
- height: 0px; |
- } |
- |
- body, html { |
- width: 100%; |
- height: 100%; |
- background-color: red; |
- } |
- |
- body { |
- margin: 0px; |
- } |
- |
- .clipBox { |
- position: absolute; |
- overflow: hidden; |
- left: 100px; |
- right: 100px; |
- top: 100px; |
- bottom: 100px; |
- } |
- |
- #container { |
- position: absolute; |
- left: -100px; |
- top: -100px; |
- right: -100px; |
- bottom: -100px; |
- background-color: yellow; |
- overflow: auto; |
- transform: translateZ(0); |
- } |
- |
- .spacer { |
- width: 100px; |
- height: 2000px; |
- } |
-</style> |
- |
-<script> |
- window.addEventListener('load', function() { |
- document.rootScroller = document.getElementById('container'); |
- }); |
-</script> |
- |
-<div class="clipBox"> |
- <div id="container"> |
- <div class="spacer"></div> |
- </div> |
-</div> |