| Index: third_party/WebKit/LayoutTests/paint/invalidation/spv2/fixed-tranformed.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/fixed-tranformed.html b/third_party/WebKit/LayoutTests/paint/invalidation/spv2/fixed-tranformed.html
|
| deleted file mode 100644
|
| index af04bb3e8d2422770ff04784cd5f6ef5ae89ffa2..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/fixed-tranformed.html
|
| +++ /dev/null
|
| @@ -1,49 +0,0 @@
|
| -<!-- Based on fast/repaint/fixed-tranformed.html -->
|
| -<!DOCTYPE html>
|
| -
|
| -<html>
|
| -<head>
|
| - <style type="text/css" media="screen">
|
| - body {
|
| - height: 1000px;
|
| - margin: 0;
|
| - }
|
| - #test {
|
| - width: 100px;
|
| - height: 100px;
|
| - background-color: red;
|
| - position: fixed;
|
| - top: 10px;
|
| - left: 10px;
|
| - transform: translate(50px, 50px);
|
| - }
|
| -
|
| - .box:hover {
|
| - background-color: green;
|
| - }
|
| - </style>
|
| - <script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
|
| - <script type="text/javascript">
|
| - function paintInvalidationTest()
|
| - {
|
| - document.getElementById('test').style.background='green';
|
| - }
|
| -
|
| - function setupTest() {
|
| - window.scrollBy(0, 50);
|
| - runPaintInvalidationTest();
|
| - };
|
| - window.addEventListener('load', setupTest, false);
|
| - </script>
|
| -</head>
|
| -<body>
|
| -
|
| -<!--
|
| - https://bugs.webkit.org/show_bug.cgi?id=36686
|
| - Test repainting of a fixed-position element with a transform.
|
| - The box should be entirely green.
|
| --->
|
| -<div id="test"></div>
|
| -
|
| -</body>
|
| -</html>
|
|
|