csswg/css3-gcpm Overview.html,1.150,1.151

Update of /sources/public/csswg/css3-gcpm
In directory hutz:/tmp/cvs-serv27941

Modified Files:
	Overview.html 
Log Message:
x

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-gcpm/Overview.html,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -d -r1.150 -r1.151
--- Overview.html	31 Oct 2011 05:25:50 -0000	1.150
+++ Overview.html	31 Oct 2011 05:53:55 -0000	1.151
@@ -3270,58 +3270,19 @@
     offset is set to zero.
 
    <div class=example>
-    <p>In this code, the &lsquo;<code class=property>float</code>&rsquo;
-     property floats the element to the top left of the multi-column element,
-     while the &lsquo;<a href="#float-offset"><code
-     class=property>float-offset</code></a>&rsquo; property pushes it to the
-     right so that it ends up in the column next to it:
-
-    <pre>
-div.quote { 
-  float: top left multicol; 
-  float-offset: 2.5gr; 
-  width: 1gr }
+    <pre>img { 
+  float: top left;
+  float-offset: 50% 50%;
+  width: 100%;
+}
 </pre>
-
-    <div class=cols>
-     <p>Lorem ipsum dolor<br>
-      sit amet. Nam at jus.<br>
-      Sed imp er di et ris.<br>
-      Cur abi tur et sapen.<br>
-      Vivamus a metus.<br>
-      Aenean at risus<br>
-      pharetra ante luctu<br>
-      feugiat quis enim.<br>
-      Cum sociis natoque<br>
-      penatibus et magni.
-
-     <div style="position: absolute; left: 175px; top: 115px; z-index: 6">
-      <p>Lorem ipsum dolor<br>
-       sit amet. Nam at jus.<br>
-       Sed imp er di et ris.<br>
-       Cur abi tur et sapen.
-     </div>
-
-     <div style="position: absolute; left: 350px; top: 0px; z-index: 6">
-      <p>Lorem ipsum dolor<br>
-       sit amet. Nam at jus.<br>
-       Sed imp er di et ris.<br>
-       Cur abi tur et sapen.<br>
-       Vivamus a metus.<br>
-       Aenean at risus<br>
-       pharetra ante luctu<br>
-       feugiat quis enim.<br>
-       Cum sociis natoque<br>
-       penatibus et magni.
-     </div>
-
-     <div class=rep style="top: 0; left: 175px; width: 150px"></div>
-
-     <div class=gap style="left: 150px"></div>
-
-     <div class=gap style="left: 325px"></div>
-    </div>
-
+    The first rule in the code above floats images to the top left of its
+    natural column. The second rule pushes the float in the opposite
+    directions: to the right and downwards. The horizontal component
+    (&lsquo;<code class=css>50$</code>&rsquo;) means that the horizontal
+    middle of the element should be in the middle of the gap between the
+    left-most column and the one next to it. Vertically, element should be in
+    the middle of the column. Here is a possible rendering: <img src=11.png>
     <p>Assuming a three-column layout, the same rendering can be achieved by
      floating the element to the right instead:
 
@@ -3333,133 +3294,22 @@
 </pre>
    </div>
 
-   <div class=example>
-    <pre>
-img { 
-  float: top left multicol;
-  float-offset: 1.5gr 50%;
-  width: 8em;
-}
-</pre>
-
-    <p>The first rule in the code above floats images to the top left of the
-     multi-column element. The second rule pushes the float in the opposite
-     directions: to the right and downwards. The horizontal component
-     (&lsquo;<code class=css>1.5gr</code>&rsquo;) means that the horizontal
-     middle of the element should be in the middle of the gap between the
-     left-most column and the one next to it. Vertically, element should be
-     in the middle of the column. Here is a possible rendering:
-
-    <div class=cols>
-     <p>Lorem ipsum dolor<br>
-      sit amet. Nam at jus. <br>
-      Sed<br>
-      imp<br>
-      er di<br>
-      et ris.<br>
-      Cur<br>
-      abi<br>
-      tur et sapen. Fusce<br>
-      sed ligula a turpis.
-
-     <div style="position: absolute; left: 175px; top: 0; z-index: 6;">
-      <p>Lorem ipsum dolor<br>
-       sit amet. Nam at jus.
-
-      <div style="margin-left: 100px"> Sed<br>
-       imp<br>
-       er di<br>
-       et ris.<br>
-       Cur<br>
-       abi</div>
-      tur et sapen. Fusce <br>
-      sed ligula a turpis.</div>
-
-     <div style="position: absolute; left: 350px; top: 0; z-index: 6;">
-      <p>Lorem ipsum dolor<br>
-       sit amet. Nam at jus.<br>
-       Sed imp er di et ris.<br>
-       Cur abi tur et sapen.<br>
-       Vivamus a metus.<br>
-       Aenean at risus<br>
-       pharetra ante luctu<br>
-       feugiat quis enim.<br>
-       Cum sociis natoque<br>
-       penatibus et magni.
-     </div>
-
-     <div class=rep style="left: 50px; width: 220px"></div>
-
-     <div class=gap style="left: 150px"></div>
-
-     <div class=gap style="left: 325px"></div>
-    </div>
-   </div>
+   <p>The floated element will never be pushed outside the content edges of
+    the multicol element due to &lsquo;<a href="#float-offset"><code
+    class=property>float-offset</code></a>&rsquo;.
 
    <div class=example>
-    <p>Consider this code:
-
     <pre>
-img { 
-  float: top left multicol;
-  float-offset: 1.25gr 50%;
-  width: 6em;
+img {
+  float: top right multicol;
+  width: 3gr;
 }
 </pre>
 
-    <p>The only difference between this and the previous example is the
-     horizontal value on &lsquo;<a href="#float-offset"><code
-     class=property>float-offset</code></a>&rsquo;. The value &lsquo;<code
-     class=css>1.25gr</code>&rsquo; means that a point 25% into the image in
-     the inline direction will be aligned with a point 25% into the column
-     gap. Here is a possible rendering:
-
-    <div class=cols>
-     <p>Lorem ipsum dolor<br>
-      sit amet. Nam at jus. <br>
-      Sed imper di et<br>
-      ris. Cur abi tur<br>
-      et sapen. Fusce<br>
-      sed ligula a sic<br>
-      turpis. Lorem<br>
-      ipsum dolor sit<br>
-      amet. Namat jus. Sed<br>
-      imper di et ris curit.
-
-     <div style="position: absolute; left: 175px; top: 0; z-index: 6;">
-      <p>Lorem ipsum dolor<br>
-       sit amet. Nam at jus.
-
-      <div style="margin-left: 100px"> Sed<br>
-       imp<br>
-       er di<br>
-       et ris.<br>
-       Cur<br>
-       abi</div>
-      tur et sapen. Fusce <br>
-      sed ligula a turpis.</div>
-
-     <div style="position: absolute; left: 350px; top: 0; z-index: 6;">
-      <p>Lorem ipsum dolor<br>
-       sit amet. Nam at jus.<br>
-       Sed imp er di et ris.<br>
-       Cur abi tur et sapen.<br>
-       Vivamus a metus.<br>
-       Aenean at risus<br>
-       pharetra ante luctu<br>
-       feugiat quis enim.<br>
-       Cum sociis natoque<br>
-       penatibus et magni.
-     </div>
-
-     <div class=rep style="left: 120px; width: 150px"></div>
-
-     <div class=gap style="left: 150px"></div>
-
-     <div class=gap style="left: 325px"></div>
-    </div>
-   </div>
-   <!--
+    <p>The code above floats the element to the top right of the multi-column
+     element. Further, it sets the width of images to the width of two
+     columns plus the gap between them. Here is a possible rendering. <img
+     src=8.png> <!--
 <h2>Aligning baselines in multi-column layouts</h2>
 
 <p>In multi-column layouts, baselines are typically aligned between
@@ -3483,22 +3333,23 @@
 
 <p class=note>The <a href="http://dev.w3.org/csswg/css3-linebox/#LineStacking">line-box-contain</a> property is defined in <a href="http://dev.w3.org/csswg/css3-linebox">CSS3 module: line</a>.
 -->
-   <!--
+     <!--
 http://www.w3.org/Style/Group/css3-src/css3-linebox/Overview.html#LineStacking
 -->
-   <!--
+     <!--
 <p class=note>A similar idea &mdash; 'line-stacking-strategy: grid-height' &mdash; was proposed in a <a href="http://www.w3.org/TR/css3-linebox/#line-stacking-strategy">previous version of the CSS3 line module</a>. The 'line-stacking-strategy' property is <a href="http://www.w3.org/TR/xsl/#line-stacking-strategy">used in XSL</a>.
 -->
-   
-   <h2 id=the-first-page-pseudo-element><span class=secno>15. </span>The
-    &lsquo;<code class=property>first-page</code>&rsquo; pseudo-element</h2>
-   <!--
+     
+
+    <h2 id=the-first-page-pseudo-element><span class=secno>15. </span>The
+     &lsquo;<code class=property>first-page</code>&rsquo; pseudo-element</h2>
+    <!--
 <p>The 'first-page' pseudo-element selects the content of an element
 which appears on the first page the element appears on. If the
 element only appears on one page, all the content of the element is
 selected.
 -->
-   <!--
+    <!--
 <p>The 'first-page' pseudo-element is used to apply styling to the
 part of an element that ends up on the page where the element first
 appears when formatted. The following properties apply to :first-page
@@ -3506,36 +3357,36 @@
 properties, border properties, and padding properties. UAs may apply
 other properties as well.
 -->
-   
-   <p>The &lsquo;<code class=property>first-page</code>&rsquo; pseudo-element
-    is used to apply styling to the part of an element that ends up on the
-    starting page for that element. If the whole element appears on the
-    starting page, &lsquo;<code class=property>first-page</code>&rsquo;
-    applies to the whole element. The following properties apply to
-    :first-page pseudo-elements: column properties, background properties,
-    margin properties, border properties, and padding properties. UAs may
-    apply other properties as well.
+    
+    <p>The &lsquo;<code class=property>first-page</code>&rsquo;
+     pseudo-element is used to apply styling to the part of an element that
+     ends up on the starting page for that element. If the whole element
+     appears on the starting page, &lsquo;<code
+     class=property>first-page</code>&rsquo; applies to the whole element.
+     The following properties apply to :first-page pseudo-elements: column
+     properties, background properties, margin properties, border properties,
+     and padding properties. UAs may apply other properties as well.
 
-   <div class=example>
-    <p>In this example, there will be one column on the starting page of each
-     chapter, while subsequent pages will have two columns:
+    <div class=example>
+     <p>In this example, there will be one column on the starting page of
+      each chapter, while subsequent pages will have two columns:
 
-    <pre>
+     <pre>
   div.chapter { columns: 2 }
   div.chapter::first-page { columns: 1 }
 </pre>
-   </div>
+    </div>
 
-   <div class=example>
-    <p>In this example, padding is added on the left side on the starting
-     page of each chapter:
+    <div class=example>
+     <p>In this example, padding is added on the left side on the starting
+      page of each chapter:
 
-    <pre>
+     <pre>
   div.chapter { break-before: left }
   div.chapter::first-page { padding-left: 4em }
 </pre>
-   </div>
-   <!--
+    </div>
+    <!--
 
 <h2>Page selection: nth()</h2>
 
@@ -3594,15 +3445,15 @@
 </div>
 
 -->
-   
-   <h2 id=conformance><span class=secno>16. </span>Conformance</h2>
+    
+    <h2 id=conformance><span class=secno>16. </span>Conformance</h2>
 
-   <p>TBD
+    <p>TBD
 
-   <h2 id=appendix-a-default-style-sheet><span class=secno>17.
-    </span>Appendix A: Default style sheet</h2>
+    <h2 id=appendix-a-default-style-sheet><span class=secno>17.
+     </span>Appendix A: Default style sheet</h2>
 
-   <pre>
+    <pre>
 @page {
   counter-reset: footnote;
   @footnote {
@@ -3630,270 +3481,273 @@
 h6 { bookmark-level: 6 }
 </pre>
 
-   <h2 class=no-num id=acknowledgments>Acknowledgments</h2>
+    <h2 class=no-num id=acknowledgments>Acknowledgments</h2>
 
-   <p>This document has been improved by Bert Bos, Michael Day, Melinda
-    Grant, David Baron, Markus Mielke, Steve Zilles, Ian Hickson, Elika
-    Etemad, Laurens Holst, Mike Bremford, Allan Sandfeld Jensen, Kelly
-    Miller, Werner Donn&eacute;, Tarquin (Mark) Wilton-Jones, Michel Fortin,
-    Christian Roth, Brady Duga, Del Merritt, Ladd Van Tol, Tab Atkins Jr.,
-    Jacob Grundtvig Refstrup, James Elmore, Ian Tindale, Murakami Shinyu,
-    Paul E. Merrell, Philip Taylor.</p>
+    <p>This document has been improved by Bert Bos, Michael Day, Melinda
+     Grant, David Baron, Markus Mielke, Steve Zilles, Ian Hickson, Elika
+     Etemad, Laurens Holst, Mike Bremford, Allan Sandfeld Jensen, Kelly
+     Miller, Werner Donn&eacute;, Tarquin (Mark) Wilton-Jones, Michel Fortin,
+     Christian Roth, Brady Duga, Del Merritt, Ladd Van Tol, Tab Atkins Jr.,
+     Jacob Grundtvig Refstrup, James Elmore, Ian Tindale, Murakami Shinyu,
+     Paul E. Merrell, Philip Taylor.</p>
 
-   <h2 class=no-num id=references>References</h2>
+    <h2 class=no-num id=references>References</h2>
 
-   <h3 class=no-num id=normative-references>Normative references</h3>
-   <!--begin-normative--> <!-- Sorted by label -->
-   <dl class=bibliography>
-    <dt style="display: none"><!-- keeps the doc valid if the DL is empty -->
-     <!---->
+    <h3 class=no-num id=normative-references>Normative references</h3>
+    <!--begin-normative--> <!-- Sorted by label -->
+    <dl class=bibliography>
+     <dt
+      style="display: none"><!-- keeps the doc valid if the DL is empty -->
+      <!---->
 
-    <dt id=CSS3LIST>[CSS3LIST]
+     <dt id=CSS3LIST>[CSS3LIST]
 
-    <dd>Tab Atkins Jr. <a
-     href="http://www.w3.org/TR/2011/WD-css3-lists-20110524"><cite>CSS Lists
-     and Counters Module Level 3.</cite></a> 24 May 2011. W3C Working Draft.
-     (Work in progress.) URL: <a
-     href="http://www.w3.org/TR/2011/WD-css3-lists-20110524">http://www.w3.org/TR/2011/WD-css3-lists-20110524</a>
-     </dd>
-    <!---->
-   </dl>
-   <!--end-normative-->
-   <h3 class=no-num id=other-references>Other references</h3>
-   <!--begin-informative--> <!-- Sorted by label -->
-   <dl class=bibliography>
-    <dt style="display: none"><!-- keeps the doc valid if the DL is empty -->
+     <dd>Tab Atkins Jr. <a
+      href="http://www.w3.org/TR/2011/WD-css3-lists-20110524"><cite>CSS Lists
+      and Counters Module Level 3.</cite></a> 24 May 2011. W3C Working Draft.
+      (Work in progress.) URL: <a
+      href="http://www.w3.org/TR/2011/WD-css3-lists-20110524">http://www.w3.org/TR/2011/WD-css3-lists-20110524</a>
+      </dd>
      <!---->
+    </dl>
+    <!--end-normative-->
+    <h3 class=no-num id=other-references>Other references</h3>
+    <!--begin-informative--> <!-- Sorted by label -->
+    <dl class=bibliography>
+     <dt
+      style="display: none"><!-- keeps the doc valid if the DL is empty -->
+      <!---->
 
-    <dt id=CSS2>[CSS2]
+     <dt id=CSS2>[CSS2]
 
-    <dd>Ian Jacobs; et al. <a
-     href="http://www.w3.org/TR/2008/REC-CSS2-20080411"><cite>Cascading Style
-     Sheets, level 2 (CSS2) Specification.</cite></a> 11 April 2008. W3C
-     Recommendation. URL: <a
-     href="http://www.w3.org/TR/2008/REC-CSS2-20080411">http://www.w3.org/TR/2008/REC-CSS2-20080411</a>
-     </dd>
-    <!---->
+     <dd>Ian Jacobs; et al. <a
+      href="http://www.w3.org/TR/2008/REC-CSS2-20080411"><cite>Cascading
+      Style Sheets, level 2 (CSS2) Specification.</cite></a> 11 April 2008.
+      W3C Recommendation. URL: <a
+      href="http://www.w3.org/TR/2008/REC-CSS2-20080411">http://www.w3.org/TR/2008/REC-CSS2-20080411</a>
+      </dd>
+     <!---->
 
-    <dt id=CSS3PAGE>[CSS3PAGE]
+     <dt id=CSS3PAGE>[CSS3PAGE]
 
-    <dd>H&#229;kon Wium Lie; Melinda Grant. <a
-     href="http://www.w3.org/TR/2006/WD-css3-page-20061010"><cite>CSS3
-     Module: Paged Media.</cite></a> 10 October 2006. W3C Working Draft.
-     (Work in progress.) URL: <a
-     href="http://www.w3.org/TR/2006/WD-css3-page-20061010">http://www.w3.org/TR/2006/WD-css3-page-20061010</a>
-     </dd>
-    <!---->
-   </dl>
-   <!--end-informative-->
-   <h2 class=no-num id=index>Index</h2>
-   <!--begin-index-->
-   <ul class=indexlist>
-    <li>bleed, <a href="#bleed" title=bleed><strong>8.</strong></a>
+     <dd>H&#229;kon Wium Lie; Melinda Grant. <a
+      href="http://www.w3.org/TR/2006/WD-css3-page-20061010"><cite>CSS3
+      Module: Paged Media.</cite></a> 10 October 2006. W3C Working Draft.
+      (Work in progress.) URL: <a
+      href="http://www.w3.org/TR/2006/WD-css3-page-20061010">http://www.w3.org/TR/2006/WD-css3-page-20061010</a>
+      </dd>
+     <!---->
+    </dl>
+    <!--end-informative-->
+    <h2 class=no-num id=index>Index</h2>
+    <!--begin-index-->
+    <ul class=indexlist>
+     <li>bleed, <a href="#bleed" title=bleed><strong>8.</strong></a>
 
-    <li>bookmark-label, <a href="#bookmark-label"
-     title=bookmark-label><strong>9.</strong></a>
+     <li>bookmark-label, <a href="#bookmark-label"
+      title=bookmark-label><strong>9.</strong></a>
 
-    <li>bookmark-level, <a href="#bookmark-level"
-     title=bookmark-level><strong>9.</strong></a>
+     <li>bookmark-level, <a href="#bookmark-level"
+      title=bookmark-level><strong>9.</strong></a>
 
-    <li>bookmark-state, <a href="#bookmark-state"
-     title=bookmark-state><strong>9.</strong></a>
+     <li>bookmark-state, <a href="#bookmark-state"
+      title=bookmark-state><strong>9.</strong></a>
 
-    <li>bookmark-target, <a href="#bookmark-target"
-     title=bookmark-target><strong>9.</strong></a>
+     <li>bookmark-target, <a href="#bookmark-target"
+      title=bookmark-target><strong>9.</strong></a>
 
-    <li>float-offset, <a href="#float-offset"
-     title=float-offset><strong>14.4.</strong></a>
+     <li>float-offset, <a href="#float-offset"
+      title=float-offset><strong>14.4.</strong></a>
 
-    <li>hyphenate-last-line-avoid, <a href="#hyphenate-last-line-avoid"
-     title=hyphenate-last-line-avoid><strong>5.8.</strong></a>
+     <li>hyphenate-last-line-avoid, <a href="#hyphenate-last-line-avoid"
+      title=hyphenate-last-line-avoid><strong>5.8.</strong></a>
 
-    <li>image-resolution, <a href="#image-resolution0"
-     title=image-resolution><strong>7.</strong></a>
+     <li>image-resolution, <a href="#image-resolution0"
+      title=image-resolution><strong>7.</strong></a>
 
-    <li>marks, <a href="#marks" title=marks><strong>8.</strong></a>
+     <li>marks, <a href="#marks" title=marks><strong>8.</strong></a>
 
-    <li>named strings, <a href="#named-strings0"
-     title="named strings"><strong>2.</strong></a>
+     <li>named strings, <a href="#named-strings0"
+      title="named strings"><strong>2.</strong></a>
 
-    <li>running elements, <a href="#running-elements0"
-     title="running elements"><strong>2.</strong></a>
+     <li>running elements, <a href="#running-elements0"
+      title="running elements"><strong>2.</strong></a>
 
-    <li>string-set, <a href="#string-set"
-     title=string-set><strong>2.1.1.</strong></a>
-   </ul>
-   <!--end-index-->
-   <h2 class=no-num id=property-index>Property index</h2>
-   <!--begin-properties-->
-   <table class=proptable>
-    <thead>
-     <tr>
-      <th>Property
+     <li>string-set, <a href="#string-set"
+      title=string-set><strong>2.1.1.</strong></a>
+    </ul>
+    <!--end-index-->
+    <h2 class=no-num id=property-index>Property index</h2>
+    <!--begin-properties-->
+    <table class=proptable>
+     <thead>
+      <tr>
+       <th>Property
 
-      <th>Values
+       <th>Values
 
-      <th>Initial
+       <th>Initial
 
-      <th>Applies&nbsp;to
+       <th>Applies&nbsp;to
 
-      <th>Inh.
+       <th>Inh.
 
-      <th>Percentages
+       <th>Percentages
 
-      <th>Media
+       <th>Media
 
-    <tbody>
-     <tr>
-      <th><a class=property href="#bleed">bleed</a>
+     <tbody>
+      <tr>
+       <th><a class=property href="#bleed">bleed</a>
 
-      <td>&lt;length&gt;
+       <td>&lt;length&gt;
 
-      <td>6pt
+       <td>6pt
 
-      <td>page context
+       <td>page context
 
-      <td>no
+       <td>no
 
-      <td>refer to width of page box
+       <td>refer to width of page box
 
-      <td>visual
+       <td>visual
 
-     <tr>
-      <th><a class=property href="#bookmark-label">bookmark-label</a>
+      <tr>
+       <th><a class=property href="#bookmark-label">bookmark-label</a>
 
-      <td>content() | attr() | &lt;string>
+       <td>content() | attr() | &lt;string>
 
-      <td>content()
+       <td>content()
 
-      <td>all elements
+       <td>all elements
 
-      <td>no
+       <td>no
 
-      <td>N/A
+       <td>N/A
 
-      <td>all
+       <td>all
 
-     <tr>
-      <th><a class=property href="#bookmark-level">bookmark-level</a>
+      <tr>
+       <th><a class=property href="#bookmark-level">bookmark-level</a>
 
-      <td>none | &lt;integer>
+       <td>none | &lt;integer>
 
-      <td>none
+       <td>none
 
-      <td>all elements
+       <td>all elements
 
-      <td>no
+       <td>no
 
-      <td>N/A
+       <td>N/A
 
-      <td>all
+       <td>all
 
-     <tr>
-      <th><a class=property href="#bookmark-state">bookmark-state</a>
+      <tr>
+       <th><a class=property href="#bookmark-state">bookmark-state</a>
 
-      <td>open | closed
+       <td>open | closed
 
-      <td>open
+       <td>open
 
-      <td>block-level elements
+       <td>block-level elements
 
-      <td>no
+       <td>no
 
-      <td>N/A
+       <td>N/A
 
-      <td>all
+       <td>all
 
-     <tr>
-      <th><a class=property href="#bookmark-target">bookmark-target</a>
+      <tr>
+       <th><a class=property href="#bookmark-target">bookmark-target</a>
 
-      <td>none | &lt;uri> | &lt;attr>
+       <td>none | &lt;uri> | &lt;attr>
 
-      <td>none
+       <td>none
 
-      <td>all elements
+       <td>all elements
 
-      <td>no
+       <td>no
 
-      <td>N/A
+       <td>N/A
 
-      <td>all
+       <td>all
 
-     <tr>
-      <th><a class=property href="#float-offset">float-offset</a>
+      <tr>
+       <th><a class=property href="#float-offset">float-offset</a>
 
-      <td>&lt;length> &lt;length> ?
+       <td>&lt;length> &lt;length> ?
 
-      <td>0 0
+       <td>0 0
 
-      <td>floated elements
+       <td>floated elements
 
-      <td>no
+       <td>no
 
-      <td>refer to width and height of containing block
+       <td>refer to width and height of containing block
 
-      <td>visual, paged
+       <td>visual, paged
 
-     <tr>
-      <th><a class=property
-       href="#hyphenate-last-line-avoid">hyphenate-last-line-avoid</a>
+      <tr>
+       <th><a class=property
+        href="#hyphenate-last-line-avoid">hyphenate-last-line-avoid</a>
 
-      <td>auto | always | column | page | spread
+       <td>auto | always | column | page | spread
 
-      <td>auto
+       <td>auto
 
-      <td>block-level elements
+       <td>block-level elements
 
-      <td>yes
+       <td>yes
 
-      <td>N/A
+       <td>N/A
 
-      <td>visual
+       <td>visual
 
-     <tr>
-      <th><a class=property href="#image-resolution0">image-resolution</a>
+      <tr>
+       <th><a class=property href="#image-resolution0">image-resolution</a>
 
-      <td>normal | [ from-image || &lt;dpi> ]
+       <td>normal | [ from-image || &lt;dpi> ]
 
-      <td>normal
+       <td>normal
 
-      <td>replaced elements and background images?
+       <td>replaced elements and background images?
 
-      <td>yes
+       <td>yes
 
-      <td>N/A
+       <td>N/A
 
-      <td>visual
+       <td>visual
 
-     <tr>
-      <th><a class=property href="#marks">marks</a>
+      <tr>
+       <th><a class=property href="#marks">marks</a>
 
-      <td>[ crop || cross ] | none
+       <td>[ crop || cross ] | none
 
-      <td>none
+       <td>none
 
-      <td>page context
+       <td>page context
 
-      <td>no
+       <td>no
 
-      <td>N/A
+       <td>N/A
 
-      <td>visual, paged
+       <td>visual, paged
 
-     <tr>
-      <th><a class=property href="#string-set">string-set</a>
+      <tr>
+       <th><a class=property href="#string-set">string-set</a>
 
-      <td>[[ &lt;identifier> &lt;content-list>] [, &lt;identifier>
-       &lt;content-list>]* ] | none
+       <td>[[ &lt;identifier> &lt;content-list>] [, &lt;identifier>
+        &lt;content-list>]* ] | none
 
-      <td>none
+       <td>none
 
-      <td>all elements
+       <td>all elements
 
-      <td>no
+       <td>no
 
-      <td>N/A
+       <td>N/A
 
-      <td>all
-   </table>
-   <!--end-properties--></div>
+       <td>all
+    </table>
+    <!--end-properties--></div>
+  </div>

Received on Monday, 31 October 2011 05:54:01 UTC