Skip to content

Commit 46a480c

Browse files
author
Simon Pieters
committed
[cssom-view] Editorial: mark the newly added features at risk
--HG-- extra : rebase_source : 208ae15f32db4beb62eca9e52dd11720099c5f30
1 parent 96ce38f commit 46a480c

3 files changed

Lines changed: 20 additions & 18 deletions

File tree

cssom-view/Overview.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<h1>CSSOM View Module</h1>
1818

19-
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 24 September 2013</h2>
19+
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 25 September 2013</h2>
2020

2121
<dl>
2222

@@ -83,7 +83,7 @@ <h2 class="no-num no-toc" id="sotd">Status of This Document</h2>
8383
can be found in the <a href="http://www.w3.org/TR/">W3C technical reports
8484
index at http://www.w3.org/TR/.</a></em>
8585

86-
<p>This is the 24 September 2013 Editor's Draft of CSSOM View. Please send
86+
<p>This is the 25 September 2013 Editor's Draft of CSSOM View. Please send
8787
comments to
8888
<a href="mailto:www-style@w3.org?subject=%5Bcssom-view%5D%20">www-style@w3.org</a>
8989
(<a href="http://lists.w3.org/Archives/Public/www-style/">archived</a>)
@@ -141,9 +141,9 @@ <h2 class="no-num no-toc" id="toc">Table of Contents</h2>
141141
<ul class="toc">
142142
<li><a href="#the-domrectlist-interface"><span class="secno">11.1 </span>The <code title="">DOMRectList</code> Interface</a></li>
143143
<li><a href="#the-domrect-interface"><span class="secno">11.2 </span>The <code title="">DOMRect</code> Interface</a></li>
144-
<li><a href="#the-dompoint-interface"><span class="secno">11.3 </span>The <code title="">DOMPoint</code> Interface</a></li>
145-
<li><a href="#the-domquad-interface"><span class="secno">11.4 </span>The <code title="">DOMQuad</code> Interface</a></li>
146-
<li><a href="#the-geometryutils-interface"><span class="secno">11.5 </span>The <code title="">GeometryUtils</code> Interface</a></ul></li>
144+
<li><a class="atrisk" href="#the-dompoint-interface"><span class="secno">11.3 </span>The <code title="">DOMPoint</code> Interface</a></li>
145+
<li><a class="atrisk" href="#the-domquad-interface"><span class="secno">11.4 </span>The <code title="">DOMQuad</code> Interface</a></li>
146+
<li><a class="atrisk" href="#the-geometryutils-interface"><span class="secno">11.5 </span>The <code title="">GeometryUtils</code> Interface</a></ul></li>
147147
<li><a href="#events"><span class="secno">12 </span>Events</a>
148148
<ul class="toc">
149149
<li><a href="#resizing-viewports"><span class="secno">12.1 </span>Resizing viewports</a></li>
@@ -1625,8 +1625,8 @@ <h3 id="the-domrect-interface"><span class="secno">11.2 </span>The <code title="
16251625
readonly attribute double <a href="#dom-domrect-height" title="dom-DOMRect-height">height</a>;
16261626
};</pre>
16271627

1628-
<p>The <dfn id="dom-domrect" title="dom-DOMRect"><code>DOMRect(<var>left</var>, <var>top</var>, <var>width</var>, <var>height</var>)</code></dfn> constructor, when invoked, must
1629-
run the following steps:
1628+
<p class="atrisk">The <dfn id="dom-domrect" title="dom-DOMRect"><code>DOMRect(<var>left</var>, <var>top</var>, <var>width</var>, <var>height</var>)</code></dfn> constructor, when
1629+
invoked, must run the following steps:
16301630

16311631
<ol>
16321632
<li><p>Let <var>right</var> be <var>left</var> plus <var>width</var>.
@@ -1655,7 +1655,7 @@ <h3 id="the-domrect-interface"><span class="secno">11.2 </span>The <code title="
16551655
<code title="dom-DOMRect-top"><a href="#dom-domrect-top">top</a></code>.</p>
16561656

16571657

1658-
<h3 id="the-dompoint-interface"><span class="secno">11.3 </span>The <code title="">DOMPoint</code> Interface</h3>
1658+
<h3 class="atrisk" id="the-dompoint-interface"><span class="secno">11.3 </span>The <code title="">DOMPoint</code> Interface</h3>
16591659

16601660
<pre class="idl">[<a href="#dom-dompoint" title="dom-DOMPoint">Constructor</a>(optional <a href="#dompointliteral">DOMPointLiteral</a> point),
16611661
<a href="#dom-dompoint" title="dom-DOMPoint">Constructor</a>(unrestricted double x, unrestricted double y, optional unrestricted double z = 0, <!--
@@ -1704,7 +1704,7 @@ <h3 id="the-dompoint-interface"><span class="secno">11.3 </span>The <code title=
17041704
it must set the current value to the new value.
17051705

17061706

1707-
<h3 id="the-domquad-interface"><span class="secno">11.4 </span>The <code title="">DOMQuad</code> Interface</h3>
1707+
<h3 class="atrisk" id="the-domquad-interface"><span class="secno">11.4 </span>The <code title="">DOMQuad</code> Interface</h3>
17081708

17091709
<p>Objects implementing the <code><a href="#domquad">DOMQuad</a></code> interface represents a quadrilateral shape. <code><a href="#domquad">DOMQuad</a></code> objects have an <dfn id="associated-bounding-rectangle">associated
17101710
bounding rectangle</dfn> set to a <code><a href="#domrect">DOMRect</a></code> object when created.
@@ -1772,7 +1772,7 @@ <h3 id="the-domquad-interface"><span class="secno">11.4 </span>The <code title="
17721772
<p>The <dfn id="dom-domquad-bounds" title="dom-DOMQuad-bounds"><code>bounds</code></dfn> attribute must return the <a href="#associated-bounding-rectangle">associated bounding rectangle</a>.
17731773

17741774

1775-
<h3 id="the-geometryutils-interface"><span class="secno">11.5 </span>The <code title="">GeometryUtils</code> Interface</h3>
1775+
<h3 class="atrisk" id="the-geometryutils-interface"><span class="secno">11.5 </span>The <code title="">GeometryUtils</code> Interface</h3>
17761776

17771777
<pre class="idl">enum <dfn id="cssboxtype">CSSBoxType</dfn> { "margin", "border", "padding", "content" };
17781778
dictionary <dfn id="boxquadoptions">BoxQuadOptions</dfn> {
@@ -1784,7 +1784,7 @@ <h3 id="the-geometryutils-interface"><span class="secno">11.5 </span>The <code t
17841784
<a href="#cssboxtype">CSSBoxType</a> fromBox = "border";
17851785
<a href="#cssboxtype">CSSBoxType</a> toBox = "border";
17861786
};
1787-
1787+
17881788
[NoInterfaceObject]
17891789
interface <dfn id="geometryutils">GeometryUtils</dfn> {
17901790
sequence&lt;<a href="#domquad">DOMQuad</a>&gt; <a href="#dom-geometryutils-getboxquads" title="dom-GeometryUtils-getBoxQuads">getBoxQuads</a>(<a href="#boxquadoptions">BoxQuadOptions</a> options);

cssom-view/Overview.src.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1583,8 +1583,8 @@ <h3>The <code title>DOMRect</code> Interface</h3>
15831583
readonly attribute double <span title=dom-DOMRect-height>height</span>;
15841584
};</pre>
15851585

1586-
<p>The <dfn title=dom-DOMRect><code>DOMRect(<var>left</var>, <var>top</var>, <var>width</var>, <var>height</var>)</code></dfn> constructor, when invoked, must
1587-
run the following steps:
1586+
<p class=atrisk>The <dfn title=dom-DOMRect><code>DOMRect(<var>left</var>, <var>top</var>, <var>width</var>, <var>height</var>)</code></dfn> constructor, when
1587+
invoked, must run the following steps:
15881588

15891589
<ol>
15901590
<li><p>Let <var>right</var> be <var>left</var> plus <var>width</var>.
@@ -1613,7 +1613,7 @@ <h3>The <code title>DOMRect</code> Interface</h3>
16131613
<code title=dom-DOMRect-top>top</code>.</p>
16141614

16151615

1616-
<h3>The <code title>DOMPoint</code> Interface</h3>
1616+
<h3 class=atrisk>The <code title>DOMPoint</code> Interface</h3>
16171617

16181618
<pre class=idl>[<span title=dom-DOMPoint>Constructor</span>(optional <span>DOMPointLiteral</span> point),
16191619
<span title=dom-DOMPoint>Constructor</span>(unrestricted double x, unrestricted double y, optional unrestricted double z = 0, <!--
@@ -1662,7 +1662,7 @@ <h3>The <code title>DOMPoint</code> Interface</h3>
16621662
it must set the current value to the new value.
16631663

16641664

1665-
<h3>The <code title>DOMQuad</code> Interface</h3>
1665+
<h3 class=atrisk>The <code title>DOMQuad</code> Interface</h3>
16661666

16671667
<p>Objects implementing the <code>DOMQuad</code> interface represents a quadrilateral shape. <code>DOMQuad</code> objects have an <dfn>associated
16681668
bounding rectangle</dfn> set to a <code>DOMRect</code> object when created.
@@ -1730,7 +1730,7 @@ <h3>The <code title>DOMQuad</code> Interface</h3>
17301730
<p>The <dfn title=dom-DOMQuad-bounds><code>bounds</code></dfn> attribute must return the <span>associated bounding rectangle</span>.
17311731

17321732

1733-
<h3>The <code title>GeometryUtils</code> Interface</h3>
1733+
<h3 class=atrisk>The <code title>GeometryUtils</code> Interface</h3>
17341734

17351735
<pre class=idl>enum <dfn>CSSBoxType</dfn> { "margin", "border", "padding", "content" };
17361736
dictionary <dfn>BoxQuadOptions</dfn> {
@@ -1742,7 +1742,7 @@ <h3>The <code title>GeometryUtils</code> Interface</h3>
17421742
<span>CSSBoxType</span> fromBox = "border";
17431743
<span>CSSBoxType</span> toBox = "border";
17441744
};
1745-
1745+
17461746
[NoInterfaceObject]
17471747
interface <dfn>GeometryUtils</dfn> {
17481748
sequence&lt;<span>DOMQuad</span>> <span title=dom-GeometryUtils-getBoxQuads>getBoxQuads</span>(<span>BoxQuadOptions</span> options);

default.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,13 +633,15 @@ dl.switch > dt:before {
633633
padding: 4px;
634634
border: 1px solid;
635635
content: 'At risk';
636-
font-size: smaller;
636+
font-size: small;
637637
background-color: white;
638638
color: gray;
639639
border-radius: 1em;
640640
text-align: center;
641641
}
642642

643+
.toc .atrisk::before { content:none }
644+
643645

644646
/* This is mostly to make the list inside the CR exit criteria more compact. */
645647
ol.inline, ol.inline li {display: inline; padding: 0; margin: 0}

0 commit comments

Comments
 (0)