| Index: third_party/WebKit/LayoutTests/paint/invalidation/spv2/background-shorthand-with-gradient-and-height-changes.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/background-shorthand-with-gradient-and-height-changes.html b/third_party/WebKit/LayoutTests/paint/invalidation/spv2/background-shorthand-with-gradient-and-height-changes.html
|
| deleted file mode 100644
|
| index 7837fe992113d4cb830e9172868d6a63645fda6e..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/background-shorthand-with-gradient-and-height-changes.html
|
| +++ /dev/null
|
| @@ -1,37 +0,0 @@
|
| -<!-- Based on fast/repaint/background-shorthand-with-gradient-and-height-changes.html -->
|
| -<html>
|
| -<head>
|
| -<script src="resources/paint-invalidation-test.js"></script>
|
| -
|
| -<style>
|
| -#outer {
|
| - padding-top: 200px;
|
| - /* background-size is implicitly set to initial via the background shorthand. */
|
| - background:-webkit-gradient(
|
| - linear,
|
| - left top,
|
| - left bottom,
|
| - color-stop(0%, rgba(255,255,0,0)), color-stop(100%, rgba(0,0,0,1))
|
| - );
|
| -}
|
| -
|
| -#inner {
|
| - height: 100px;
|
| -}
|
| -</style>
|
| -
|
| -<script>
|
| -//This test verifies that gradient background gets repainted properly after child box height change.
|
| -
|
| -function paintInvalidationTest() {
|
| - document.getElementById('inner').style.height = 300 + 'px';
|
| -}
|
| -</script>
|
| -</head>
|
| -<body onload='runPaintInvalidationTest();'>
|
| -<div id='outer'>
|
| - <div id='inner'>
|
| - </div>
|
| -</div>
|
| -</body>
|
| -</html>
|
|
|