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

Unified Diff: LayoutTests/fast/regions/region-styling/region-style-rule-position.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/region-styling/region-style-rule-position.html
diff --git a/LayoutTests/fast/regions/region-styling/region-style-rule-position.html b/LayoutTests/fast/regions/region-styling/region-style-rule-position.html
deleted file mode 100644
index f8d287cb1b5fdd015d634c53e4be91089e21d086..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/region-styling/region-style-rule-position.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <style>
- p {
- margin: 0;
- }
- p.body {
- background-color: red;
- }
- p.body {
- background-color: lime;
- }
-
- .content {
- -webkit-flow-into: f;
- }
- #r {
- -webkit-flow-from: f;
- margin-top: 1em;
- width: 10em;
- height: 10em;
- background-color: lightgray;
- }
-
- @-webkit-region #r {
- * {
- background-color: blue;
- }
- p.region, #para {
- background-color: red;
- }
- #para {
- background-color: red;
- }
- }
- @-webkit-region #r {
- p.region, #para {
- background-color: lime;
- }
- }
- </style>
- </head>
- <body>
- <p class='body'>Text that is not flowed - should be green</p>
- <div class='content'>
- <p class='region'>Paragraph that *is* flowed - should be green, too</p>
- <p id='para'>Paragraph that *is* flowed - should be green, too</p>
- </div>
-
- <div id='r'/></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698