- From: Vincent Hardy via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 29 Oct 2011 00:21:31 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-regions
In directory hutz:/tmp/cvs-serv28663
Modified Files:
Overview.html Overview.src.html
Log Message:
Fixed issue styling to hide older resoved issues. Added note about how a region with no flow content is still a region
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-regions/Overview.html,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- Overview.html 27 Oct 2011 01:43:23 -0000 1.25
+++ Overview.html 29 Oct 2011 00:21:29 -0000 1.26
@@ -44,6 +44,10 @@
div.issue-marker a {
color: red;
}
+
+ .issue.resolved, .issue.stale, .issue.moved {
+ display: none;
+ }
</style>
<body>
@@ -53,14 +57,14 @@
<h1 id=css-regions-module>CSS Regions Module</h1>
- <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 27 October
+ <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 29 October
2011</h2>
<dl>
<dt>This version:
<dd><a
- href="http://www.w3.org/TR/2011/ED-css3-regions-20111027/">http://www.w3.org/csswg/css3-regions</a>
+ href="http://www.w3.org/TR/2011/ED-css3-regions-20111029/">http://www.w3.org/csswg/css3-regions</a>
<dt>Latest version:
@@ -780,8 +784,36 @@
then the element does not format any content visually.
</dl>
- <p>Note that a region's document children are not visually formatted unless
- they are directed to a named flow referenced by one or more regions.
+ <p class=note>A region's document children are not visually formatted
+ unless they are directed to a named flow referenced by one or more
+ regions.
+
+ <div class=note>
+ <p>An element becomes a region when its ‘<a href="#flow-from"><code
+ class=property>flow-from</code></a>’ property is set to a valid
+ <ident> value, even if there is no content contributing to the
+ referenced flow. For example:</p>
+ <code></code>
+ <pre>
+<style>
+ .article{
+ flow-into: thread;
+ }
+ .region{
+ flow-from: thread;
+ }
+</style>
+<html>
+ <body>
+ <div class=region>div content</div>
+ </body>
+</html>
+ </pre>
+ There is no element matching the <code>.article</code> selector and
+ therefore no content in the <code>thread</code> flow. However, the element
+ matching the <code>.region</code> selector is still associated with that
+ empty named flow and, consequently, its children are not formatted
+ visually.</div>
<div class="issue resolved">
<p><a
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-regions/Overview.src.html,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- Overview.src.html 27 Oct 2011 01:43:23 -0000 1.27
+++ Overview.src.html 29 Oct 2011 00:21:29 -0000 1.28
@@ -44,6 +44,10 @@
div.issue-marker a {
color: red;
}
+
+ .issue.resolved, .issue.stale, .issue.moved {
+ display: none;
+ }
</style>
@@ -594,9 +598,33 @@
</dd>
</dl>
- <p>Note that a region's document children are not visually formatted unless they are directed to a named flow
+ <p class="note">A region's document children are not visually formatted unless they are directed to a named flow
referenced by one or more regions.</p>
+ <div class="note"><p>An element becomes a region when its 'flow-from' property is set to a valid
+ <ident> value, even if there is no content contributing to the referenced flow.
+ For example:</p>
+ <code><pre>
+<style>
+ .article{
+ flow-into: thread;
+ }
+ .region{
+ flow-from: thread;
+ }
+</style>
+<html>
+ <body>
+ <div class=region>div content</div>
+ </body>
+</html>
+ </code></pre>
+
+ There is no element matching the <code>.article</code> selector and therefore no
+ content in the <code>thread</code> flow. However, the element matching the <code>.region</code>
+ selector is still associated with that empty named flow and, consequently, its children
+ are not formatted visually.
+ </div>
<div class="issue resolved">
<p><a href="http://lists.w3.org/Archives/Public/www-style/2011Aug/0069.html">Third resolution on
Regions at the Seattle Face to Face meeting, July 2011</a>. Superseded by resolution during
Received on Saturday, 29 October 2011 00:21:37 UTC