Chromium Code Reviews| Index: LayoutTests/fast/regions/flow-body-in-html.html |
| diff --git a/LayoutTests/fast/regions/flow-body-in-html.html b/LayoutTests/fast/regions/flow-body-in-html.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..571384c7d7eea9bfc5c7b79a2ccdfe662539135c |
| --- /dev/null |
| +++ b/LayoutTests/fast/regions/flow-body-in-html.html |
| @@ -0,0 +1,23 @@ |
| +<!doctype html> |
| +<html> |
| + <head> |
| + <title>74144 - [CSS Regions] Universal child selector on region breaks the rendering of its content</title> |
| + <style> |
| + body { |
| + -webkit-flow-into: foo; |
| + } |
| + html { |
| + -webkit-flow-from: foo; |
|
esprehn
2013/06/17 21:41:02
Indentation is wrong for this CSS.
|
| + } |
| + </style> |
| + <script> |
| + if (window.testRunner) |
| + testRunner.dumpAsText() |
| + </script> |
| + </head> |
| + <body> |
| + PASS: the body tag has flow-into while the html has flow-from. |
| + |
| + <p><a href="https://bugs.webkit.org/show_bug.cgi?id=74144">Bug 74144</a> - [CSS Regions] Elements in a region should be assignable to a named flow</p> |
| + </body> |
| +</html> |