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..5da6f5897cc42ec7f19754a85369c464567817a9 |
--- /dev/null |
+++ b/LayoutTests/fast/regions/universal-selector-children-to-the-same-region.html |
@@ -0,0 +1,22 @@ |
+<!doctype html> |
+<html> |
+ <head> |
+ <title>74144 - [CSS Regions] Universal child selector on region breaks the rendering of its content</title> |
+ <style> |
+ .region > * { |
+ -webkit-flow-into: foo; |
esprehn
2013/06/17 21:41:02
Missing indentation.
|
+ } |
+ .region { |
+ -webkit-flow-from: foo; |
esprehn
2013/06/17 21:41:02
Same thing.
|
+ } |
+ </style> |
+ <script> |
+ 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="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> |