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

Unified Diff: LayoutTests/fast/regions/bottom-overflow-out-of-first-region.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/regions/bottom-overflow-out-of-first-region.html
diff --git a/LayoutTests/fast/regions/bottom-overflow-out-of-first-region.html b/LayoutTests/fast/regions/bottom-overflow-out-of-first-region.html
deleted file mode 100644
index 7e22fcd22bf114e0dc02e28260a61add14af16c8..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/bottom-overflow-out-of-first-region.html
+++ /dev/null
@@ -1,59 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <style>
- body { font: 16px/1.25 monospace; }
-
- #content {
- -webkit-flow-into: flow1;
- padding: 5px;
- }
-
- #first-box {
- border: 1px solid blue;
- height:200px;
- }
-
- #second-box {
- margin:auto;
- border: 1px solid green;
- width:75%;
- }
-
- #region1, #region2 {
- border: 1px solid black;
- -webkit-flow-from: flow1;
- }
-
- #region1 {
- width: 412px;
- height: 210px;
- }
-
- #region2 {
- width: 300px;
- height: 150px;
- }
- #p1, #p2, #p3 {
- margin: 0;
- }
- </style>
- </head>
- <body>
- <p>In the test case below, the green block's width should not vary and should use the first region to determine its width. It is overflowing downwards out of the blue block, and so the portion that overflows should continue to use the blue block's containing block width. The blue block does not exist in region two, so using some hypothetical made-up width is incorrect. The overflow should be spilling out of the top of region one and be painted in region two.</p>
- <div id="content">
- <div id="first-box">
- <div id="second-box">
- <p id="p1">These lines should all fit to the width of the block in the first region and spill out of the bottom of the first region.</p>
- <p id="p2">These lines should all fit to the width of the block in the first region and spill out of the bottom of the first region.</p>
- <p id="p3">These lines should all fit to the width of the block in the first region and spill out of the bottom of the first region.</p>
- </div>
- </div>
- </div>
-
- <div id="container">
- <div id="region1"></div>
- <div id="region2"></div>
- </div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698