Index: LayoutTests/fast/repaint/increasing-region-content-height.html |
diff --git a/LayoutTests/fast/repaint/increasing-region-content-height.html b/LayoutTests/fast/repaint/increasing-region-content-height.html |
deleted file mode 100644 |
index 091a611d6234b9afb197557d4b3cd8700c41f503..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/repaint/increasing-region-content-height.html |
+++ /dev/null |
@@ -1,40 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
- <head> |
- <script src="resources/text-based-repaint.js" type="text/javascript"></script> |
- |
- <style> |
- div.content { |
- -webkit-flow-into: flow; |
- width: 350px; |
- height: 150px; |
- } |
- p, body { |
- margin: 0; |
- } |
- #region { |
- -webkit-flow-from: flow; |
- background-color: lightgray; |
- position: relative; |
- width: 400px; |
- height: 200px; |
- } |
- </style> |
- </head> |
- <body onload="runRepaintTest();"> |
- <div id="box"></div> |
- <div class="content"> |
- <p>This text should not get clipped</p> |
- </div> |
- |
- <div id="region"></div> |
- |
- <script type="text/javascript"> |
- function repaintTest() |
- { |
- var box = document.getElementById("box"); |
- box.style.height = "50px"; |
- } |
- </script> |
- </body> |
-</html> |