- From: Elika Etemad via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 21 Feb 2012 14:05:30 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-break
In directory hutz:/tmp/cvs-serv31371
Modified Files:
Overview.html Overview.src.html
Log Message:
Fix markup errors
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-break/Overview.html,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- Overview.html 21 Feb 2012 13:54:31 -0000 1.20
+++ Overview.html 21 Feb 2012 14:05:27 -0000 1.21
@@ -177,6 +177,16 @@
<li><a href="#breaking-boxes"><span class=secno>5. </span> Box Model for
Breaking</a>
+ <ul class=toc>
+ <li><a href="#varying-size-boxes"><span class=secno>5.1. </span>
+ Breaking into Varying-size Fragmenters</a>
+
+ <li><a href="#break-margins"><span class=secno>5.2. </span> Margins at
+ Breaks</a>
+
+ <li><a href="#break-decoration"><span class=secno>5.3. </span>
+ Decorating Box Breaks</a>
+ </ul>
<li><a href="#conformance"><span class=secno>6. </span> Conformance</a>
<ul class=toc>
@@ -931,13 +941,16 @@
<h2 id=breaking-boxes><span class=secno>5. </span> Box Model for Breaking</h2>
- <p> When a flow is fragmented into varying-size fragmenters, the following
- rules are observed for adapting layout:
-
<p class=note> The sizing terminology used in this section is defined in
Appendix D of <a href="#CSS3-WRITING-MODES"
rel=biblioentry>[CSS3-WRITING-MODES]<!--{{CSS3-WRITING-MODES}}--></a>.
+ <h3 id=varying-size-boxes><span class=secno>5.1. </span> Breaking into
+ Varying-size Fragmenters</h3>
+
+ <p> When a flow is fragmented into varying-size fragmenters, the following
+ rules are observed for adapting layout:
+
<ul>
<li> Intrinsic sizes are calculated and maintained across the entire
element. Where an initial containing block size is needed, assume an
@@ -1097,11 +1110,16 @@
</ul>
</div>
+ <h3 id=break-margins><span class=secno>5.2. </span> Margins at Breaks</h3>
+
<p> When an unforced break occurs between block-level boxes, any adjoining
margins are set to zero. When a forced break occurs there, any margins
before the break are truncated, but margins after the break are preserved.
+ <h3 id=break-decoration><span class=secno>5.3. </span> Decorating Box
+ Breaks</h3>
+
<p> When a break splits a box, the ‘<code
class=property>box-decoration-break</code>’ property controls
whether the box's margins, borders, and padding wrap the fragment effect
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-break/Overview.src.html,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- Overview.src.html 21 Feb 2012 13:54:31 -0000 1.21
+++ Overview.src.html 21 Feb 2012 14:05:27 -0000 1.22
@@ -1,10 +1,10 @@
<!DOCTYPE html public '-//W3C//DTD HTML 4.01//EN' 'http://www.w3.org/TR/html4/strict.dtd'>
<html lang="en">
<head profile="http://www.w3.org/2006/03/hcard">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>CSS Fragmentation Module Level 3</title>
- <link rel="stylesheet" type="text/css" href="../default.css" />
- <link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-[STATUS].css" />
+ <link rel="stylesheet" type="text/css" href="../default.css">
+ <link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-[STATUS].css">
</head>
<body>
<div class="head">
@@ -492,7 +492,7 @@
<dd>
table column group boxes, table column boxes, multi-column column boxes
</dd>
- </dd>
+ </dl>
<dt id="btw-lines">Class 2</dt>
<dd>
Between line boxes inside a block container box.
@@ -706,14 +706,18 @@
<h2 id="breaking-boxes">
Box Model for Breaking</h2>
- <p>
- When a flow is fragmented into varying-size fragmenters, the following
- rules are observed for adapting layout:
- </p>
<p class="note">
The sizing terminology used in this section is defined in Appendix D of
[[CSS3-WRITING-MODES]].
</p>
+
+<h3 id="varying-size-boxes">
+Breaking into Varying-size Fragmenters</h3>
+
+ <p>
+ When a flow is fragmented into varying-size fragmenters, the following
+ rules are observed for adapting layout:
+ </p>
<ul>
<li>
Intrinsic sizes are calculated and maintained across the entire element.
@@ -878,12 +882,18 @@
</ul>
</div>
+<h3 id="break-margins">
+Margins at Breaks</h3>
+
<p>
When an unforced break occurs between block-level boxes, any adjoining
margins are set to zero. When a forced break occurs there, any margins
before the break are truncated, but margins after the break are preserved.
</p>
+<h3 id="break-decoration">
+Decorating Box Breaks</h3>
+
<p>
When a break splits a box, the 'box-decoration-break' property controls
whether the box's margins, borders, and padding wrap the fragment effect
Received on Tuesday, 21 February 2012 14:05:35 UTC