| Index: LayoutTests/compositing/repaint/repaint-into-ancestor-after-layout.html
|
| diff --git a/LayoutTests/compositing/repaint/repaint-into-ancestor-after-layout.html b/LayoutTests/compositing/repaint/repaint-into-ancestor-after-layout.html
|
| deleted file mode 100644
|
| index 65b7530cd207f102b2fc689c1f761ea1e690adf0..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/compositing/repaint/repaint-into-ancestor-after-layout.html
|
| +++ /dev/null
|
| @@ -1,53 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -
|
| -<head>
|
| -<style>
|
| -
|
| -#parent {
|
| - position: absolute;
|
| - z-index: 1;
|
| - top: 50px;
|
| - left: 50px;
|
| - width: 100px;
|
| - height: 100px;
|
| - overflow: auto;
|
| - background-color: lime;
|
| -}
|
| -
|
| -<!-- hover to see how the test works/breaks when testing interactively -->
|
| -#parent:hover {
|
| - top: 40px;
|
| -}
|
| -
|
| -#child {
|
| - background-color: cyan;
|
| - width: 50px;
|
| - height: 50px;
|
| - transform: translateZ(0);
|
| -}
|
| -</style>
|
| -
|
| -<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
|
| -<script>
|
| - function repaintTest() {
|
| - document.getElementById('parent').style.top = "10px";
|
| - }
|
| -
|
| - runRepaintTest();
|
| -</script>
|
| -</head>
|
| -
|
| -<body>
|
| - <!--
|
| - https://code.google.com/p/chromium/issues/detail?id=256200
|
| - The parent element is set up uniquely such that it is composited, but it
|
| - still paints into its composited ancestor. When it works correctly, the
|
| - parent element should repaint correctly when its position is changed.
|
| - -->
|
| - <div id="parent">
|
| - <div id="child"></div>
|
| - </div>
|
| -</body>
|
| -
|
| -</html>
|
|
|