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

Unified Diff: LayoutTests/fast/regions/float-pushed-width-change-expected.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/float-pushed-width-change-expected.html
diff --git a/LayoutTests/fast/regions/float-pushed-width-change-expected.html b/LayoutTests/fast/regions/float-pushed-width-change-expected.html
deleted file mode 100644
index 1c009a6e13a403fcc11741fb3365eb1f8c6638f7..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/float-pushed-width-change-expected.html
+++ /dev/null
@@ -1,78 +0,0 @@
-<!doctype html>
-
- <style>
-
- @font-face {
- font-family: webkit-ahem;
- font-style: normal;
- src: url(../../resources/Ahem.ttf);
- }
-
- #float1 {
- float: left;
- position:absolute;
- width: 150px;
- height: 102px;
- background-color:green;
- z-index:-1;
- }
-
- #float2 {
- float:right;
- width:200px;
- height:30px;
- background-color:orange
- }
-
- #region1, #region2, #region3 {
- border: 1px solid black;
- }
-
- #region1 {
- width: 170px;
- height: 80px;
- padding: 5px;
- }
-
- #region2 {
- width: 390px;
- height: 89px;
- padding-top:1px;
- padding-left:5px;
- padding-right:5px;
- }
-
- #region3 {
- width: 385px;
- height: 80px;
- padding-left:5px;
- padding-right:10px;
- padding-bottom:10px;
- }
-
- p.flow1 {
- clear:both;
- margin-bottom: 0px;
- }
-
- p.flow2 {
- margin-top: 0px;
- }
-
-</style>
-
-<p>In the example below, the green float should be at the top of the first region and on the left. It should spill into region two.
-The orange float should be on the right at the top of region two.</p>
-
-<div id="region1">
- <p><img id="float1"></p>
-</div>
-<div id="region2">
- <img id="float2">
- <p class="flow1">This line of text should not get out of the region. This line of text should not get out of the region.</p>
-</div>
-<div id="region3">
-<p class="flow2">This line of text should not get out of the region. This line of text should not get out of the region.</p>
-<p>This line of text should not get out of the region.</p>
-</div>
-

Powered by Google App Engine
This is Rietveld 408576698