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

Unified Diff: LayoutTests/fast/regions/style-scoped/style-scoped-in-flow-override-container-style.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/style-scoped/style-scoped-in-flow-override-container-style.html
diff --git a/LayoutTests/fast/regions/style-scoped/style-scoped-in-flow-override-container-style.html b/LayoutTests/fast/regions/style-scoped/style-scoped-in-flow-override-container-style.html
deleted file mode 100644
index 9114b6e2718eea78b040a2140b1ab3390df062d6..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/style-scoped/style-scoped-in-flow-override-container-style.html
+++ /dev/null
@@ -1,70 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <style>
- body {
- font-family: monospace;
- }
- p {
- margin: 0;
- }
- .container {
- width: 13em;
- height: 8em;
- background-color: lightgray;
- }
- .break {
- -webkit-region-break-after: always;
- }
-
- .c1 {
- -webkit-flow-into: flow1;
- font-size: 1em;
- }
- .r1 {
- -webkit-flow-from: flow1;
- }
-
- .c2 {
- -webkit-flow-into: flow2;
- }
- .r2 {
- -webkit-flow-from: flow2;
- margin-top: 1em;
- }
- </style>
-</head>
-<body>
- <p>Scope-styled elements in single region with style overlapping with target region.</p>
- <div class='c1'>
- <style scoped='true'>
- div {
- background-color: lime;
- }
- </style>
- <p>Styled line of text Styled line of text Styled line of text</p>
- </div>
- <div class='c1'>
- <p>Normal line of text Normal line of text Normal line of text</p>
- </div>
- <div class='container r1'></div>
-
- <p>Scope-styled elements flowing in multiple regions with style overlapping with target regions.</p>
- <div class='c2'>
- <style scoped='true'>
- div {
- background-color: lime;
- }
- </style>
- <p>First line</p>
- <p>Second line</p>
- <p class='break'>Third line</p>
- <p>Fourth line</p>
- <p>Fifth line</p>
- <p>Sixth line</p>
- </div>
-
- <div class='container r2'></div>
- <div class='container r2'></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698