Index: LayoutTests/compositing/backing/no-backing-for-clip.html |
diff --git a/LayoutTests/compositing/backing/no-backing-for-clip.html b/LayoutTests/compositing/backing/no-backing-for-clip.html |
deleted file mode 100644 |
index aa699d90aebcf86767b0b3aed30f59feb28242ab..0000000000000000000000000000000000000000 |
--- a/LayoutTests/compositing/backing/no-backing-for-clip.html |
+++ /dev/null |
@@ -1,59 +0,0 @@ |
-<!DOCTYPE html> |
- |
-<html> |
-<head> |
- <style type="text/css" media="screen"> |
- .box { |
- position: relative; |
- height: 100px; |
- width: 100px; |
- margin: 10px; |
- left: 0; |
- top: 0; |
- background-color: silver; |
- } |
- |
- .clipping { |
- position: relative; |
- z-index: 0; |
- width: 300px; |
- border: 1px solid black; |
- padding: 20px; |
- overflow: hidden; |
- } |
- |
- .composited { |
- transform: translateZ(0); |
- } |
- </style> |
- |
- <script> |
- if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
- function dumpLayers() |
- { |
- var layersResult = document.getElementById('layers'); |
- if (window.testRunner) |
- layersResult.innerText = window.internals.layerTreeAsText(document); |
- |
- } |
- window.addEventListener('load', dumpLayers, false) |
- </script> |
- |
-</head> |
-<body> |
- |
- <div class="clipping"> |
- This layer should not have backing store. |
- <div class="clipping"> |
- This layer should not have backing store. |
- <div class="box composited"> |
- </div> |
- </div> |
- </div> |
- |
-<pre id="layers">Layer tree goes here in DRT</pre> |
- |
-</body> |
-</html> |