Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Unified Diff: LayoutTests/fast/repaint/increasing-region-content-height.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698