Chromium Code Reviews| Index: LayoutTests/fast/regions/universal-selector-children-to-the-same-region.html |
| diff --git a/LayoutTests/fast/regions/universal-selector-children-to-the-same-region.html b/LayoutTests/fast/regions/universal-selector-children-to-the-same-region.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..78ffaabead51903e244b80b6721d31f1d77cc349 |
| --- /dev/null |
| +++ b/LayoutTests/fast/regions/universal-selector-children-to-the-same-region.html |
| @@ -0,0 +1,21 @@ |
| +<html> |
| + <head> |
| + <title>103685 - [CSS Regions] Universal child selector on region breaks the rendering of its content</title> |
| + <style type="text/css"> |
| + .region > * { |
| + -webkit-flow-into: foo; |
|
esprehn
2013/06/28 20:29:36
ws
|
| + } |
| + .region { |
| + -webkit-flow-from: foo; |
| + } |
| + </style> |
| + <script type="text/javascript"> |
| + if (window.testRunner) |
| + testRunner.dumpAsText() |
| + </script> |
| + </head> |
| + <body> |
| + <div class="region"><span>PASS: this is inline</span><div><p>PASS: and block content inside a region that is flowed into the same region</p></div><button>PASS: button</button></div> |
| + <p><a href="http://code.google.com/p/chromium/issues/detail?id=228566">Bug 228566</a> - [CSS Regions] Elements in a region should be assignable to a named flow</p> |
| + </body> |
| +</html> |