Index: third_party/WebKit/LayoutTests/fast/repaint/gradients-em-stops-repaint.html |
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/gradients-em-stops-repaint.html b/third_party/WebKit/LayoutTests/fast/repaint/gradients-em-stops-repaint.html |
deleted file mode 100644 |
index 66f69adb49c1ffb82607226be712bf049a9c6b60..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/repaint/gradients-em-stops-repaint.html |
+++ /dev/null |
@@ -1,43 +0,0 @@ |
-<!DOCTYPE html> |
- |
-<html> |
-<head> |
- <style type="text/css" media="screen"> |
- .box { |
- display: inline-block; |
- height: 120px; |
- width: 300px; |
- margin: 10px; |
- border: 1px solid black; |
- background-repeat: no-repeat; |
- font-size: 12pt; |
- } |
- |
- .em-units > .box { |
- background-image: -webkit-linear-gradient(left, yellow, yellow 5em, green 5em); |
- background-image: -moz-linear-gradient(left, yellow, yellow 5em, green 5em); |
- } |
- |
- .indicator { |
- background-color: black; |
- height: 20px; |
- } |
- </style> |
- <script type="text/javascript" src="resources/text-based-repaint.js"></script> |
- <script type="text/javascript"> |
- function repaintTest() |
- { |
- document.getElementById("box4").style.fontSize = "36pt"; |
- } |
- </script> |
- </script> |
-</head> |
-<body onload="runRepaintAndPixelTest();"> |
- |
- <div class="em-units"> |
- <div id="box3" class="box"><div class="indicator" style="width: 5em;"></div></div> |
- <div id="box4" class="box"><div class="indicator" style="width: 5em;"></div></div> |
- </div> |
- |
-</body> |
-</html> |