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> |