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

Unified Diff: LayoutTests/fast/regions/render-region-renderer.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/render-region-renderer.html
diff --git a/LayoutTests/fast/regions/render-region-renderer.html b/LayoutTests/fast/regions/render-region-renderer.html
deleted file mode 100644
index ec615357a81aa06ee7296555b19e2b5a97fcac00..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/render-region-renderer.html
+++ /dev/null
@@ -1,72 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <style>
- .region
- {
- -webkit-flow-from: no-flow;
- }
-
- .border
- {
- border: 1px solid red;
- }
-
- .size
- {
- width:50px;
- height:50px;
- }
-
- .sizePercent
- {
- width: 50%;
- height: 50%;
- }
-
- .pos
- {
- top: 150px;
- position: absolute;
- }
-
- .pos2
- {
- top: 200px;
- position: absolute;
- }
-
- .pos3
- {
- top: 250px;
- position: absolute;
- }
-
- .parent
- {
- width: 100px;
- height: 100px;
- }
-
- .outline
- {
- outline: green dotted thick;
- }
-
- .notvisible
- {
- visibility: hidden;
- }
- </style>
-</head>
-<body>
- <div class="region border">FAIL if you see the text inside the region.</div>
- <div class="region border size">FAIL if you see the text inside the region.</div>
- <div class="parent">
- <div class="region border sizePercent">FAIL if you see the text inside the region.</div>
- </div>
- <div class="region border size pos">FAIL if you see the text inside the region.</div>
- <div class="region border size pos2 outline">FAIL if you see the text inside the region.</div>
- <div class="region border size pos3 notvisible">FAIL if you see the text inside the region.</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698