| Index: third_party/WebKit/LayoutTests/fast/repaint/filter-repaint-accelerated-child-with-filter-child.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/repaint/filter-repaint-accelerated-child-with-filter-child.html b/third_party/WebKit/LayoutTests/fast/repaint/filter-repaint-accelerated-child-with-filter-child.html
|
| deleted file mode 100644
|
| index 689ec40c0cc24c5e37946fde7f83260f31671779..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/repaint/filter-repaint-accelerated-child-with-filter-child.html
|
| +++ /dev/null
|
| @@ -1,39 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<style>
|
| -div {
|
| - width: 200px;
|
| - height: 200px;
|
| -}
|
| -
|
| -.blur {
|
| - -webkit-filter: blur(10px);
|
| -}
|
| -
|
| -.drop-shadow {
|
| - -webkit-filter: drop-shadow(16px 16px 10px black);
|
| -}
|
| -
|
| -.accelerated {
|
| - transform: translateZ(0);
|
| -}
|
| -
|
| -#resize {
|
| - background-color: green;
|
| -}
|
| -</style>
|
| -
|
| -<div class="blur">
|
| - <div class="accelerated">
|
| - <div class="drop-shadow" id="resize"></div>
|
| - </div>
|
| -</div>
|
| -
|
| -<script src="resources/text-based-repaint.js"></script>
|
| -<script>
|
| -
|
| -function repaintTest() {
|
| - var resizeElement = document.getElementById("resize");
|
| - resizeElement.style.width = "100px";
|
| -}
|
| -window.onload = runRepaintAndPixelTest;
|
| -</script>
|
|
|