| Index: LayoutTests/compositing/backing/no-backing-for-clip-overlap.html
|
| diff --git a/LayoutTests/compositing/backing/no-backing-for-clip-overlap.html b/LayoutTests/compositing/backing/no-backing-for-clip-overlap.html
|
| deleted file mode 100644
|
| index f39f5247cf57663123a89c362a02ee21eb054f79..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/compositing/backing/no-backing-for-clip-overlap.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="box composited"></div>
|
| - </div>
|
| - <div class="clipping" style="margin-top: -10px;">
|
| - This layer should have backing store.
|
| - <div class="box composited"></div>
|
| - </div>
|
| -
|
| -<pre id="layers">Layer tree goes here in DRT</pre>
|
| -
|
| -</body>
|
| -</html>
|
|
|