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/layers/float-region-promoted-to-layer-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/layers/float-region-promoted-to-layer-expected.html
diff --git a/LayoutTests/fast/regions/layers/float-region-promoted-to-layer-expected.html b/LayoutTests/fast/regions/layers/float-region-promoted-to-layer-expected.html
deleted file mode 100644
index 3697820d9257fa16f042edadbccf52e5562ec0e4..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/layers/float-region-promoted-to-layer-expected.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <link rel="stylesheet" href="../resources/region-style.css">
- <style>
- .dummyFloat
- {
- float: left;
- width: 1px;
- height: 10px;
- }
- .box1
- {
- width: 50px;
- height: 10px;
- }
- .box2
- {
- /* The following border will be painted on top of the first region */
- border-left: gray 50px solid;
- /* Making box2 have its own layer */
- position: relative;
- width: 200px;
- height: 60px;
- }
- .borderBox
- {
- border: none;
- }
- </style>
- </head>
- <body>
- <div class="box1">
- <div class="dummyFloat"></div>
- <div class="borderBox" style="position: relative">
- <div class="redBox"></div>
- </div>
- </div>
-
- <div class="box2">
- <div class="borderBox">
- <div class="orangeBox"></div>
- </div>
- </div>
-
- <p>Testing that regions become layers as required by the content that display in those regions.
- In this case the region is also a float and we are testing that the correct enclosing
- layer will paint the region as needed. In this case box1 is responsible of painting
- the first region, even though the whole element fits inside box2.
- There should be two boxes: one taller gray box and one orange box. The orange box has a black border.
- The test fails if there's any red on screen.
- </p>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698