Skip to content

Commit a84e773

Browse files
committed
remove some section clutter in favor of just interface sketching
1 parent 4eb3a00 commit a84e773

2 files changed

Lines changed: 3 additions & 54 deletions

File tree

cssom/Overview.html

Lines changed: 2 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -251,22 +251,6 @@ <h2 class="no-num no-toc" id=toc>Table of Contents</h2>
251251
<li><a href="#the-csscomponentvalue-interface"><span
252252
class=secno>5.6.6. </span>The <code title="">CSSComponentValue</code>
253253
Interface</a>
254-
255-
<li><a href="#the-csscolorcomponentvalue-interface"><span
256-
class=secno>5.6.7. </span>The <code
257-
title="">CSSColorComponentValue</code> Interface</a>
258-
259-
<li><a href="#the-csslengthcomponentvalue-interface"><span
260-
class=secno>5.6.8. </span>The <code
261-
title="">CSSLengthComponentValue</code> Interface</a>
262-
263-
<li><a href="#the-csspercentagecomponentvalue-interfac"><span
264-
class=secno>5.6.9. </span>The <code
265-
title="">CSSPercentageComponentValue</code> Interface</a>
266-
267-
<li><a href="#the-cssurlcomponentvalue-interface"><span
268-
class=secno>5.6.10. </span>The <code
269-
title="">CSSURLComponentValue</code> Interface</a>
270254
</ul>
271255
</ul>
272256

@@ -3919,9 +3903,6 @@ <h4 id=the-csscomponentvalue-interface><span class=secno>5.6.6. </span>The
39193903
attribute DOMString <span title=dom-CSSStringComponentValue-identifier>identifier</span>;
39203904
};</pre>
39213905

3922-
<h4 id=the-csscolorcomponentvalue-interface><span class=secno>5.6.7.
3923-
</span>The <code title="">CSSColorComponentValue</code> Interface</h4>
3924-
39253906
<pre
39263907
class=idl>[NoInterfaceObject] interface <dfn id=csscolorcomponentvalue>CSSColorComponentValue</dfn> {
39273908
attribute short <span title=dom-CSSColorComponentValue-red>red</span>;
@@ -3930,10 +3911,8 @@ <h4 id=the-csscolorcomponentvalue-interface><span class=secno>5.6.7.
39303911
attribute float <span title=dom-CSSColorComponentValue-alpha>alpha</span>;
39313912
};</pre>
39323913

3933-
<p class=XXX>We can make this more complex later.
3934-
3935-
<h4 id=the-csslengthcomponentvalue-interface><span class=secno>5.6.8.
3936-
</span>The <code title="">CSSLengthComponentValue</code> Interface</h4>
3914+
<p class=XXX>We can make this more complex later. This will probably move
3915+
into the CSS Color Level 4.
39373916

39383917
<pre
39393918
class=idl>[NoInterfaceObject] interface <dfn id=csslengthcomponentvalue>CSSLengthComponentValue</dfn> {
@@ -3943,28 +3922,16 @@ <h4 id=the-csslengthcomponentvalue-interface><span class=secno>5.6.8.
39433922
<span class=XXX>// figure out what to do with absolute lengths</span>
39443923
};</pre>
39453924

3946-
<p class=XXX>...
3947-
3948-
<h4 id=the-csspercentagecomponentvalue-interfac><span class=secno>5.6.9.
3949-
</span>The <code title="">CSSPercentageComponentValue</code> Interface</h4>
3950-
39513925
<pre
39523926
class=idl>[NoInterfaceObject] interface <dfn id=csspercentagecomponentvalue>CSSPercentageComponentValue</dfn> {
39533927
attribute float <span title=dom-CSSPercentageComponentValue>percent</span>;
39543928
};</pre>
39553929

3956-
<p class=XXX>...
3957-
3958-
<h4 id=the-cssurlcomponentvalue-interface><span class=secno>5.6.10.
3959-
</span>The <code title="">CSSURLComponentValue</code> Interface</h4>
3960-
39613930
<pre
39623931
class=idl>[NoInterfaceObject] interface <dfn id=cssurlcomponentvalue>CSSURLComponentValue</dfn> {
39633932
attribute DOMString? <span title=dom-CSSURLComponentValue-url>url</span>;
39643933
};</pre>
39653934

3966-
<p class=XXX>...
3967-
39683935
<h2 id=dom-access-to-css-declaration-blocks><span class=secno>6. </span>DOM
39693936
Access to CSS Declaration Blocks</h2>
39703937

cssom/Overview.src.html

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2473,20 +2473,14 @@ <h4>The <code title="">CSSComponentValue</code> Interface</h4>
24732473
attribute DOMString <span title="dom-CSSStringComponentValue-identifier">identifier</span>;
24742474
};</pre>
24752475

2476-
2477-
<h4>The <code title="">CSSColorComponentValue</code> Interface</h4>
2478-
24792476
<pre class="idl">[NoInterfaceObject] interface <dfn>CSSColorComponentValue</dfn> {
24802477
attribute short <span title="dom-CSSColorComponentValue-red">red</span>;
24812478
attribute short <span title="dom-CSSColorComponentValue-green">green</span>;
24822479
attribute short <span title="dom-CSSColorComponentValue-blue">blue</span>;
24832480
attribute float <span title="dom-CSSColorComponentValue-alpha">alpha</span>;
24842481
};</pre>
24852482

2486-
<p class="XXX">We can make this more complex later.</p>
2487-
2488-
2489-
<h4>The <code title="">CSSLengthComponentValue</code> Interface</h4>
2483+
<p class="XXX">We can make this more complex later. This will probably move into the CSS Color Level 4.</p>
24902484

24912485
<pre class="idl">[NoInterfaceObject] interface <dfn>CSSLengthComponentValue</dfn> {
24922486
attribute float <span title="dom-CSSLengthComponentValue-em">em</span>;
@@ -2495,26 +2489,14 @@ <h4>The <code title="">CSSLengthComponentValue</code> Interface</h4>
24952489
<span class="XXX">// figure out what to do with absolute lengths</span>
24962490
};</pre>
24972491

2498-
<p class="XXX">...</p>
2499-
2500-
2501-
<h4>The <code title="">CSSPercentageComponentValue</code> Interface</h4>
2502-
25032492
<pre class="idl">[NoInterfaceObject] interface <dfn>CSSPercentageComponentValue</dfn> {
25042493
attribute float <span title="dom-CSSPercentageComponentValue">percent</span>;
25052494
};</pre>
25062495

2507-
<p class="XXX">...</p>
2508-
2509-
2510-
<h4>The <code title="">CSSURLComponentValue</code> Interface</h4>
2511-
25122496
<pre class="idl">[NoInterfaceObject] interface <dfn>CSSURLComponentValue</dfn> {
25132497
attribute DOMString? <span title="dom-CSSURLComponentValue-url">url</span>;
25142498
};</pre>
25152499

2516-
<p class="XXX">...</p>
2517-
25182500

25192501

25202502
<h2>DOM Access to CSS Declaration Blocks</h2>

0 commit comments

Comments
 (0)