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

Side by Side Diff: LayoutTests/fast/regions/universal-selector-children-to-the-same-region.html

Issue 15027005: [CSS Regions] Elements in a region should be assignable to a named flow (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Integrates all feedback. One of the tests causes an ASSERT in ContentShell because of Region Ranges. Created 7 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <title>74144 - [CSS Regions] Universal child selector on region breaks the r endering of its content</title>
5 <style>
6 .region > * {
7 -webkit-flow-into: foo;
esprehn 2013/06/17 21:41:02 Missing indentation.
8 }
9 .region {
10 -webkit-flow-from: foo;
esprehn 2013/06/17 21:41:02 Same thing.
11 }
12 </style>
13 <script>
14 if (window.testRunner)
15 testRunner.dumpAsText()
16 </script>
17 </head>
18 <body>
19 <div class="region"><span>PASS: this is inline</span><div><p>PASS: and blo ck content inside a region that is flowed into the same region</p></div><button> PASS: button</button></div>
20 <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>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698