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

Unified Diff: LayoutTests/fast/regions/position-writing-modes-in-variable-width-regions.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/position-writing-modes-in-variable-width-regions.html
diff --git a/LayoutTests/fast/regions/position-writing-modes-in-variable-width-regions.html b/LayoutTests/fast/regions/position-writing-modes-in-variable-width-regions.html
deleted file mode 100644
index 87cb6a85d3555a261790d104c4d3631f7c5209cf..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/position-writing-modes-in-variable-width-regions.html
+++ /dev/null
@@ -1,72 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <style>
- #content {
- -webkit-flow-into: flow1;
- }
-
- #first-box {
- margin:50px 10% 0 10%;
- position:relative;
- height:400px;
- }
-
- #region1, #region2 {
- -webkit-flow-from: flow1;
- }
-
- #region1 {
- width: 500px;
- height: 50px;
- }
-
- #region2 {
- width: 320px;
- height: 400px;
- }
-
- .square {
- width:31.25%;
- height:20%;
- position:absolute;
- }
-
- .red { width:80px; height:80px; position:absolute; background-color:red; z-index:-1 }
-
- #topleft { top:0; left:0; -webkit-writing-mode:vertical-rl; background-color:#00ff00;}
- #topright { top:0; right:0; -webkit-writing-mode:horizontal-bt; background-color:#00dd00;}
- #bottomleft { bottom:0; left:0; -webkit-writing-mode:vertical-lr; background-color:#00bb00; }
- #bottomright { bottom:0; right:0px; -webkit-writing-mode:horizontal-tb; background-color:#009900;}
-</style>
-</head>
-
-<body>
-You should see four 80x80 green squares below and no red should be visible.
-
-<div style="position:relative; width:550px;">
-
-<div id="content">
- <div id="first-box">
- <div class="square" id="topleft"></div>
- <div class="square" id="topright"></div>
- <div class="square" id="bottomleft"></div>
- <div class="square" id="bottomright"></div>
- </div>
-</div>
-
-<div id="container">
- <div id="region1"></div>
- <div id="region2"></div>
- <div id="region3"></div>
-</div>
-
-<div class=red style="top:50px;left:32px;"></div>
-
-<div class=red style="top:370px;left:32px;"></div>
-
-<div class=red style="top:50px;right:262px;"></div>
-
-<div class=red style="top:370px;right:262px;"></div>
-</div>
-

Powered by Google App Engine
This is Rietveld 408576698