1212 rel =dcterms.rights >
1313 < meta content ="CSS Regions Module Level 3 " name =dcterms.title >
1414 < meta content =text name =dcterms.type >
15- < meta content =2013-02-26 name =dcterms.issued >
15+ < meta content =2013-03-01 name =dcterms.issued >
1616 < meta content ="Vincent Hardy " name =dcterms.creator >
1717 < meta content ="Rossen Atanassov " name =dcterms.creator >
1818 < meta content ="Alan Stearns " name =dcterms.creator >
5050
5151 < h1 id =css-regions-module > CSS Regions Module Level 3</ h1 >
5252
53- < h2 class ="no-num no-toc " id =longstatus-date > Editor's Draft 26 February
54- 2013</ h2 >
53+ < h2 class ="no-num no-toc " id =longstatus-date > Editor's Draft 1 March 2013</ h2 >
5554
5655 < dl >
5756 < dt > This version:
@@ -445,29 +444,29 @@ <h3 id=named-flows-and-regions><span class=secno>1.1. </span>Named flows
445444 class =css > region1</ code > ’, ‘< code class =css > region2</ code > ’,
446445 ‘< code class =css > region3</ code > ’ and ‘< code
447446 class =css > region4</ code > ’ IDs become CSS Regions that consume the
448- ‘< code class =css > article_flow </ code > ’ content.
447+ ‘< code class =property > article-flow </ code > ’ content.
449448
450449 < div class =example >
451450 < pre >
452451<style>
453452 article {
454- < strong > flow-into: article_flow ;</ strong >
453+ < strong > flow-into: article-flow ;</ strong >
455454 }
456455
457456 #region1, #region2, #region3, #region4 {
458- < strong > flow-from: article_flow ;</ strong >
457+ < strong > flow-from: article-flow ;</ strong >
459458 }
460459</style>
461460 </ pre >
462461 </ div >
463462
464- < p > The ‘< code class =css > article_flow </ code > ’ value on the ‘< a
463+ < p > The ‘< code class =property > article-flow </ code > ’ value on the ‘< a
465464 href ="#flow-into "> < code class =property > flow-into</ code > </ a > ’ property
466465 directs the < code > article</ code > element to the ‘< code
467- class =css > article_flow </ code > ’ < a href ="#named-flow0 "> named flow </ a > .
468- Setting the ‘< a href ="#flow-from "> < code
466+ class =property > article-flow </ code > ’ < a href ="#named-flow0 "> named
467+ flow </ a > . Setting the ‘< a href ="#flow-from "> < code
469468 class =property > flow-from</ code > </ a > ’ property on block containers to
470- ‘< code class =css > article_flow </ code > ’ makes them CSS Regions and
469+ ‘< code class =property > article-flow </ code > ’ makes them CSS Regions and
471470 associates the resulting region chain with the < a
472471 href ="#named-flow0 "> named flow</ a > : the flow is ‘< code
473472 class =css > poured</ code > ’ into the region chain.
@@ -1325,24 +1324,28 @@ <h3 id=the-region-fragment-property><span class=secno>3.4. </span>The
13251324
13261325 < div class =example >
13271326 < pre >
1328- <style>
1329- article {
1330- flow-into: "article";
1331- }
1332-
1333- #region_1, #region_2 {
1334- flow-from: article;
1335- < strong > region-fragment: break;</ strong > /* or auto */
1336- < strong > overflow: visible;</ strong > /* or hidden */
1337- }
1327+ <body is="two-region-example">
1328+ <article>...</article>
1329+ </body>
13381330
1339- </style>
1331+ <element name="two-region-example" extends="body">
1332+ <style>
1333+ article {
1334+ flow-into: article-flow;
1335+ }
1336+ #region_1, #region_2 {
1337+ flow-from: article-flow;
1338+ < strong > region-fragment: break;</ strong > /* or auto */
1339+ < strong > overflow: visible;</ strong > /* or hidden */
1340+ }
1341+ </style>
13401342
1341- <article>...</article>
1343+ <template>
1344+ <div id="region_1"></div>
1345+ <div id="region_2"></div>
1346+ </template>
1347+ </element>
13421348
1343- <div id="region_1"></div>
1344- <div id="region_2"></div>
1345-
13461349 </ pre >
13471350 </ div >
13481351
@@ -1510,17 +1513,17 @@ <h3 id=the-at-region-style-rule><span class=secno>3.5. </span>The @region
15101513
15111514 < div class =example id =region-style-example >
15121515 < p > In the following example, the < a href ="#named-flow0 "> named flow</ a >
1513- ‘< code class =css > article_flow </ code > ’ flows through ‘< code
1516+ ‘< code class =property > article-flow </ code > ’ flows through ‘< code
15141517 class =css > region_1</ code > ’ and ‘< code class =css > region_2</ code > ’.
15151518
15161519 < pre >
15171520<style>
15181521 #div_1 {
1519- < strong > flow-into: article_flow ;</ strong >
1522+ < strong > flow-into: article-flow ;</ strong >
15201523 }
15211524
15221525 #region_1, #region_2 {
1523- < strong > flow-from: article_flow ;</ strong >
1526+ < strong > flow-from: article-flow ;</ strong >
15241527 }
15251528
15261529 /* region style "RSA" */
@@ -3298,7 +3301,7 @@ <h2 class=no-num id=intro-example-code>Appendix A. Example Code for
32983301
32993302<element name="x-fancy-layout" extends="body">
33003303 <template>
3301- <style scoped >
3304+ <style>
33023305 #grid {
33033306 width: 80vw;
33043307 height: 60vw;
@@ -3328,7 +3331,7 @@ <h2 class=no-num id=intro-example-code>Appendix A. Example Code for
33283331 * Creates the named flow
33293332 */</ span >
33303333 article {
3331- < strong > flow-into: article_flow ;</ strong >
3334+ < strong > flow-into: article-flow ;</ strong >
33323335 }
33333336
33343337 < span
@@ -3337,7 +3340,7 @@ <h2 class=no-num id=intro-example-code>Appendix A. Example Code for
33373340 * This creates a region chain for the named flow.
33383341 */</ span >
33393342 #region1, #region2, #region3, #region4 {
3340- < strong > flow-from: article_flow ;</ strong >
3343+ < strong > flow-from: article-flow ;</ strong >
33413344 }
33423345 </style>
33433346 <div id="grid">
0 commit comments