Index: third_party/WebKit/LayoutTests/fast/repaint/repaint-on-style-change.html |
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/repaint-on-style-change.html b/third_party/WebKit/LayoutTests/fast/repaint/repaint-on-style-change.html |
deleted file mode 100644 |
index b6d5b8a47f91516d55a24edbbd628657520f0dfc..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/repaint/repaint-on-style-change.html |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
- <title>Test for repaint on style change</title> |
- <script src="resources/text-based-repaint.js" type="text/javascript"></script> |
- <script> |
- function repaintTest() |
- { |
- if (!window.testRunner) |
- return; |
- document.getElementById('box').style['background-color'] = 'green'; |
- } |
- </script> |
- <style> |
- div { |
- background-color: magenta; |
- height: 100px; |
- width: 100px; |
- |
- position: absolute; |
- top: 260px; |
- left: 260px; |
- } |
- </style> |
-</head> |
-<body onload="runRepaintAndPixelTest()"> |
- <div id='box'> </div> |
-</body> |
-</html> |
- |