- From: Vincent Hardy via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 31 May 2011 00:06:46 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-regions
In directory hutz:/tmp/cvs-serv2257
Modified Files:
Overview.html Overview.src.html alternate-spec-style.css
Log Message:
- Made flow property type a <string> & added issue.
- Added issue about content-order being a <float> and not an <integer>
- Added issue about duplicating content into a flow instead of moving
to a flow (http://lists.w3.org/Archives/Public/www-style/2011May/0521.html)
- Added a region-overflow property
region-overflow: break | auto
where break would not position elements that do not fit and auto would
break if the region is not the last one and overflow if it is the
last.http://lists.w3.org/Archives/Public/www-style/2011May/0520.html
- DID NOT ADD. Add an example with 'projection' media (because that does not seem to belong to the spec.)
http://lists.w3.org/Archives/Public/www-style/2011May/0520.html
- content syntax:
content: from-flow(); // To clarify that from is bound to a 'flow' property
http://lists.w3.org/Archives/Public/www-style/2011May/0520.html
- region styling:
Limit to ::region-lines and include issue about element fitting fully in
region + issue about right list of properties.
http://lists.w3.org/Archives/Public/www-style/2011May/0520.htmlhttp://lists
.w3.org/Archives/Public/www-style/2011May/0517.html
http://lists.w3.org/Archives/Public/www-style/2011May/0432.html
Added issue about selecting only elements that fall fully into the region:
http://lists.w3.org/Archives/Public/www-style/2011May/0310.html
- Use @region instead of @region-style:
http://lists.w3.org/Archives/Public/www-style/2011May/0309.html
- content: from-flow() applies to block level elements.
http://lists.w3.org/Archives/Public/www-style/2011May/0433.html
Also applies to non-replace block elements:
http://lists.w3.org/Archives/Public/www-style/2011May/0362.html
- Do not provide content balancing
http://lists.w3.org/Archives/Public/www-style/2011May/0362.html
- Removed flexbox example:
http://lists.w3.org/Archives/Public/www-style/2011May/0229.html
- Modified CSSOM View
Element.regionOverflow = overflow | fit | empty
Element.flowRanges
Issue about 'onlayoutchanged'
Issue about locating a region from an flow element.
http://lists.w3.org/Archives/Public/www-style/2011May/0508.html
http://lists.w3.org/Archives/Public/www-style/2011May/0379.html
- Use intrinsic width of 0 for region content.
http://lists.w3.org/Archives/Public/www-style/2011May/0302.html
- Breaks.
Added wording about where breaks may happen and reference the Paged Media
spec.
http://dev.w3.org/csswg/css3-page/#allowed-pg-brk
- Added reference to first-line pseudo-element and list of properties
- Some additional restyling.
- Removed issue 12 about 'range' selection since this is no longer
relevant with the proposal to only match elements that are fully in the
region.
- Added note about concern over underspecification of the first-line
pseudo-selector.
http://lists.w3.org/Archives/Public/www-style/2011May/0518.html
- CSSOM View: renamed ContentFlow to NamedFlow
- Removed issue on accessing multiple clientRects on Element since
there is already an interface for that:
http://www.w3.org/TR/cssom-view/#dom-element-getclientrects.
- Added comment that floats in the region flow impact the content flowing into the region.
Comment from implementor Alex Chiculita.
- Added issue about doing capture/bubble through a region element.
Comment from implementor Alex Chiculita.
============================================================================================
All Emails with [css3-regions] threads.
[css3-regions] OM for region content overflow
(http://lists.w3.org/Archives/Public/www-style/2011May/0486.html)
Proposed to use:
Element.regionOverflow = overflow | fit | empty
in http://lists.w3.org/Archives/Public/www-style/2011May/0508.html (last
thread message).
[css3-regions] pagination and inline elements
(http://lists.w3.org/Archives/Public/www-style/2011May/0281.html)
Explained that there are use cases for a chain of fixed-size container
ending with a flexible container. No changes to the spec.
[css3-regions][css3-content] Explicit/Implicit, Named/Anonymous Regions
(http://lists.w3.org/Archives/Public/www-style/2011May/0382.html)
Added issue raised by Fantasai about underspecification of ::first-line.
Added an issue about copying content to a flow instead of moving it to a
flow (raised by Christoph).
[css3-regions] region breaks
(http://lists.w3.org/Archives/Public/www-style/2011May/0258.html)
Added issue about unification of region/page/column breaks.
[css3-regions] region sthyling (Feedback on regions document)
(http://lists.w3.org/Archives/Public/www-style/2011May/0259.html)
Proposed the @region & ::region-lines combination.
[[css3-regions] Feedback on regions document
(http://lists.w3.org/Archives/Public/www-style/2011May/0218.html)
- Settled on region styling alternate proposal (@region + ::region-lines)
- Agreed to not bind a flow and a region directly (as in #flow { position:
into(region); })
(http://lists.w3.org/Archives/Public/www-style/2011May/0241.html)
- Agreed to keep regions that are document elements
(http://lists.w3.org/Archives/Public/www-style/2011May/0272.html)
- Agreed on intrinsic width=0 for regions.
[css3-regions] more feedback
http://lists.w3.org/Archives/Public/www-style/2011May/0261.html
- removed issue on balancing content.
- removed issue on generating additional regions automatically.
- removed issue on adding features for 'flexible' flow elements.
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-regions/Overview.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Overview.html 10 May 2011 01:42:13 -0000 1.6
+++ Overview.html 31 May 2011 00:06:44 -0000 1.7
@@ -15,21 +15,24 @@
spec styles" type="text/css">
<script src=style-toggle.js type="text/javascript">
</script>
+ <script defer src="http://test.csswg.org/harness/annotate.js#css3-regions"
+ type="text/javascript">
+</script>
<body>
<div class=head id=div-head> <!--begin-logo-->
<p><a href="http://www.w3.org/"><img alt=W3C height=48
src="http://www.w3.org/Icons/w3c_home" width=72></a> <!--end-logo--></p>
[...1834 lines suppressed...]
<td>visual
+
+ <tr>
+ <td><a class=property href="#region-overflow">region-overflow</a>
+
+ <td>auto | break
+
+ <td>auto
+
+ <td>region elements
+
+ <td>no
+
+ <td>N/A
+
+ <td>paged
</table>
<!--end-properties-->
<!-- Keep this comment at the end of the file
Index: alternate-spec-style.css
===================================================================
RCS file: /sources/public/csswg/css3-regions/alternate-spec-style.css,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- alternate-spec-style.css 9 May 2011 22:08:45 -0000 1.2
+++ alternate-spec-style.css 31 May 2011 00:06:44 -0000 1.3
@@ -55,6 +55,48 @@
counter-increment: issue;
}
+div.note {
+ margin-top: 1em;
+ padding: 0.5em;
+ border-left: 5px solid #1C75BC;
+ padding-left: 1em;
+ position: relative;
+ background: #F3FAFF;
+}
+
+div.note:before {
+ content: "Note " counter(note);
+ background: none;
+ padding: 0;
+ margin: 0 0 0.7em 0;
+ border: none;
+ font-weight: bold;
+ color: #1C75BC;
+ display: block;
+}
+
+div.note p {
+ color: black;
+}
+
+div.note p:before {
+ color: #1C75BC;
+}
+
+.note {
+ counter-increment: note;
+}
+
+pre.code {
+ margin-top: 1em;
+ padding: 0.5em;
+ border-left: 5px solid gray;
+ padding-left: 1em;
+ position: relative;
+ background: #F0F0F0;
+ margin-left: 0px;
+}
+
.toggle {
font-size: smaller;
color: gray;
@@ -69,3 +111,35 @@
position: relative;
clear: both;
}
+
+.swatch-list li {
+ list-style: none;
+}
+
+.swatch-list {
+ display: inline-block;
+}
+
+#region_styling_img_2 {
+ float: left;
+ margin-bottom: 1em;
+}
+
+.swatch {
+ width: 1em;
+ height: 1em;
+ border: 1px solid black;
+ display: inline-block;
+ margin-right: 0.5em;
+ margin-bottom: -0.25em;
+ margin-top: 0.5em;
+}
+
+#region-style-example p, #region-style-example pre {
+ clear: both;
+}
+
+#region_styling_illustration {
+ margin: 0px auto;
+ width: 70ex;
+}
\ No newline at end of file
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-regions/Overview.src.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- Overview.src.html 10 May 2011 01:42:13 -0000 1.5
+++ Overview.src.html 31 May 2011 00:06:44 -0000 1.6
@@ -15,6 +15,9 @@
"text/css" title="additional spec styles">
<script type="text/javascript" src="style-toggle.js">
</script>
+ <script src='http://test.csswg.org/harness/annotate.js#css3-regions' type=
+ 'text/javascript' defer>
+</script>
</head>
<body>
@@ -24,7 +27,7 @@
<p><a href="http://www.w3.org/"><img alt="W3C" height="48" src=
[...1470 lines suppressed...]
different layout schemes: inline and block formatting, float, absolute
@@ -1421,7 +1912,7 @@
}
#region_1, #region_2, #region_3, #region_4 {
- content: from(article_flow);
+ content: from-flow(article_flow);
}
#region_1 {
@@ -1445,7 +1936,8 @@
</pre>
</div>
- <h2 id="relation-to-other-specs">Relation to other specifications</h2>
+ <h2 id="relation-to-other-specifications">Relation to other
+ specifications</h2>
<p>This specification is related to other specifications as described in
the <a href='#references'>references</a> section. In addition, it is
Received on Tuesday, 31 May 2011 00:06:48 UTC