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

Unified Diff: LayoutTests/fast/regions/overflow-size-change-with-stacking-context-rtl.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/overflow-size-change-with-stacking-context-rtl.html
diff --git a/LayoutTests/fast/regions/overflow-size-change-with-stacking-context-rtl.html b/LayoutTests/fast/regions/overflow-size-change-with-stacking-context-rtl.html
deleted file mode 100644
index 73108719270e535cef78a51224178f817f9860bb..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/overflow-size-change-with-stacking-context-rtl.html
+++ /dev/null
@@ -1,70 +0,0 @@
-<!DOCTYPE html>
-<html style="direction:rtl">
- <head>
- <style>
- body {
- font: 16px/1.25 monospace;
- }
-
- #content {
- -webkit-flow-into: flow1;
- padding: 5px;
- }
-
- .first-box {
- border: 1px solid blue;
- }
-
- .second-box {
- margin: auto;
- border: 1px solid green;
- overflow: hidden;
- width: 75%;
- position: relative;
- z-index: 0;
- padding-bottom: 20px;
- }
-
- #region1, #region2, #region3 {
- border: 1px solid black;
- -webkit-flow-from: flow1;
- }
-
- #region1 {
- width: 204px;
- height: 100px;
- }
-
- #region2 {
- width: 300px;
- height: 180px;
- }
-
- #region3 {
- width: 116px;
- height: 120px;
- }
- </style>
- </head>
- <body>
- <p style="direction:ltr">The first and last lines of text in the regions below should be clipped to the green box. The overflow section sizes itself and clips differently in each region.</p>
-
- <div id="content">
- <div class="first-box">
- <div class="second-box">
- <div style="width: 500px; opacity: 0.8;">Clipped line of text that should not be visible.</div>
- <p>These lines will not spill out of the regions. These lines will not spill out of the regions.
- These lines will not spill out of the regions. These lines will not spill out of the regions.
- These lines will not spill out of the regions.</p>
- <div style="width: 500px; position: absolute; bottom: 0">Clipped line of text that should not be visible.</div>
- </div>
- </div>
- </div>
-
- <div id="container">
- <div id="region1"></div>
- <div id="region2"></div>
- <div id="region3"></div>
- </div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698