| Index: third_party/WebKit/LayoutTests/fast/repaint/background-clip-content-box-repaint.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/repaint/background-clip-content-box-repaint.html b/third_party/WebKit/LayoutTests/fast/repaint/background-clip-content-box-repaint.html
|
| deleted file mode 100644
|
| index df5d096b3996d7754a75435428704b37833018ef..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/repaint/background-clip-content-box-repaint.html
|
| +++ /dev/null
|
| @@ -1,31 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<style>
|
| -#container {
|
| - position: relative;
|
| - width: 500px;
|
| -}
|
| -
|
| -#dynamic-padding {
|
| - position: absolute;
|
| - left: 0;
|
| - top: 0;
|
| -
|
| - box-sizing: border-box;
|
| - width: 300px;
|
| - height: 300px;
|
| - padding: 10%;
|
| -
|
| - background-clip: content-box;
|
| - background-color: yellow;
|
| -}
|
| -</style>
|
| -<div id="container">
|
| - <div id="dynamic-padding"></div>
|
| -</div>
|
| -This test verifies an element with percentage padding and background-clip:content-box correctly repaints when its padding changes due to container layout.
|
| -<script src="../../resources/run-after-layout-and-paint.js"></script>
|
| -<script>
|
| -runAfterLayoutAndPaint(function() {
|
| - document.getElementById("container").style.width = "100px";
|
| -}, true);
|
| -</script>
|
|
|