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

Unified Diff: LayoutTests/fast/regions/region-with-float-parent.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/region-with-float-parent.html
diff --git a/LayoutTests/fast/regions/region-with-float-parent.html b/LayoutTests/fast/regions/region-with-float-parent.html
deleted file mode 100644
index d067f284438431570d68c7b99735b20194b64ebb..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/region-with-float-parent.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!DOCTYPE html>
-<style>
- .content {
- display: inline-block;
- width: 100px;
- height: 100px;
- background-color: salmon;
- }
-
- .region { border: 5px solid pink; }
- .regionParent { float: left; border: 5px solid blue; }
-</style>
-<script src="../../resources/check-layout.js"></script>
-<body>
- <p>Test that the width of a floating block is correctly computed when its child is a region</p>
- <p>On success, you will see a series of PASS below.</p>
-
- <div class="container" style="height: 150px;">
- <div class="content" style="-webkit-flow-into: flow1;"></div>
- <div class="regionParent" data-expected-width="220">
- <div class="region" style="-webkit-flow-from: flow1; width: 200px;"></div>
- </div>
- </div>
-
- <div class="container" style="height: 150px;">
- <div class="content" style="-webkit-flow-into: flow2;"></div>
- <div class="regionParent" data-expected-width="220">
- <div class="region" style="-webkit-flow-from: flow2; min-width: 200px;"></div>
- </div>
- </div>
-
- <div class="container" style="height: 250px;">
- <div class="content" style="-webkit-flow-into: flow3;"></div>
- <div class="content" style="-webkit-flow-into: flow3;"></div>
- <div class="content" style="-webkit-flow-into: flow3;"></div>
- <div class="regionParent" data-expected-width="220">
- <div class="region" style="-webkit-flow-from: flow3; max-width: 200px;"></div>
- </div>
- </div>
-
- <script>checkLayout(".regionParent");</script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698