[cssom] Remove CSSFontFaceRule since it's defined in css-fonts. https://www.w3.org/Bugs/Public/show_bug.cgi?id=17537

Thu, 27 Jun 2013 15:20:19 +0200

author
Simon Pieters <simonp@opera.com>
date
Thu, 27 Jun 2013 15:20:19 +0200
changeset 8582
1763fc3f3d51
parent 8581
57b1d11cc6e9
child 8583
c3292e4c9e19

[cssom] Remove CSSFontFaceRule since it's defined in css-fonts. https://www.w3.org/Bugs/Public/show_bug.cgi?id=17537

cssom/Overview.html file | annotate | diff | comparison | revisions
cssom/Overview.src.html file | annotate | diff | comparison | revisions
     1.1 --- a/cssom/Overview.html	Thu Jun 27 15:06:09 2013 +0200
     1.2 +++ b/cssom/Overview.html	Thu Jun 27 15:20:19 2013 +0200
     1.3 @@ -161,9 +161,8 @@
     1.4       <li><a href="#the-cssimportrule-interface"><span class="secno">6.4.5 </span>The <code title="">CSSImportRule</code> Interface</a></li>
     1.5       <li><a href="#the-cssgroupingrule-interface"><span class="secno">6.4.6 </span>The <code title="">CSSGroupingRule</code> Interface</a></li>
     1.6       <li><a href="#the-cssmediarule-interface"><span class="secno">6.4.7 </span>The <code title="">CSSMediaRule</code> Interface</a></li>
     1.7 -     <li><a href="#the-cssfontfacerule-interface"><span class="secno">6.4.8 </span>The <code title="">CSSFontFaceRule</code> Interface</a></li>
     1.8 -     <li><a href="#the-csspagerule-interface"><span class="secno">6.4.9 </span>The <code title="">CSSPageRule</code> Interface</a></li>
     1.9 -     <li><a href="#the-cssnamespacerule-interface"><span class="secno">6.4.10 </span>The <code title="">CSSNamespaceRule</code> Interface</a></ul></li>
    1.10 +     <li><a href="#the-csspagerule-interface"><span class="secno">6.4.8 </span>The <code title="">CSSPageRule</code> Interface</a></li>
    1.11 +     <li><a href="#the-cssnamespacerule-interface"><span class="secno">6.4.9 </span>The <code title="">CSSNamespaceRule</code> Interface</a></ul></li>
    1.12     <li><a href="#css-declaration-blocks"><span class="secno">6.5 </span>CSS Declaration Blocks</a>
    1.13      <ul class="toc">
    1.14       <li><a href="#the-cssstyledeclaration-interface"><span class="secno">6.5.1 </span>The <code title="">CSSStyleDeclaration</code> Interface</a></ul></li>
    1.15 @@ -1769,7 +1768,7 @@
    1.16   <dt><code><a href="#cssmediarule">CSSMediaRule</a></code></dt>
    1.17   <dd><p class="issue">...</dd>
    1.18  
    1.19 - <dt><code><a href="#cssfontfacerule">CSSFontFaceRule</a></code></dt>
    1.20 + <dt><code title="">CSSFontFaceRule</code></dt>
    1.21   <dd><p class="issue">...</dd>
    1.22  
    1.23   <dt><code><a href="#csspagerule">CSSPageRule</a></code></dt>
    1.24 @@ -1884,7 +1883,7 @@
    1.25   <dd><p>Return <dfn id="dom-cssrule-import_rule" title="dom-CSSRule-IMPORT_RULE"><code>IMPORT_RULE</code></dfn> (numberic value 3).
    1.26   <dt>If the object is a <code><a href="#cssmediarule">CSSMediaRule</a></code>
    1.27   <dd><p>Return <dfn id="dom-cssrule-media_rule" title="dom-CSSRule-MEDIA_RULE"><code>MEDIA_RULE</code></dfn> (numeric value 4).
    1.28 - <dt>If the object is a <code><a href="#cssfontfacerule">CSSFontFaceRule</a></code>
    1.29 + <dt>If the object is a <code title="">CSSFontFaceRule</code>
    1.30   <dd><p>Return <dfn id="dom-cssrule-font_face_rule" title="dom-CSSRule-FONT_FACE_RULE"><code>FONT_FACE_RULE</code></dfn> (numeric value 5).
    1.31   <dt>If the object is a <code><a href="#csspagerule">CSSPageRule</a></code>
    1.32   <dd><p>Return <dfn id="dom-cssrule-page_rule" title="dom-CSSRule-PAGE_RULE"><code>PAGE_RULE</code></dfn> (numeric value 6).
    1.33 @@ -2023,20 +2022,7 @@
    1.34  with the <code title="">@media</code> at-rule.</p>
    1.35  
    1.36  
    1.37 -<h4 id="the-cssfontfacerule-interface"><span class="secno">6.4.8 </span>The <code title="">CSSFontFaceRule</code> Interface</h4>
    1.38 -
    1.39 -<p>The <code><a href="#cssfontfacerule">CSSFontFaceRule</a></code> interface represents an <code title="">@font-face</code> at-rule.</p>
    1.40 -
    1.41 -<pre class="idl">interface <dfn id="cssfontfacerule">CSSFontFaceRule</dfn> : <a href="#cssrule">CSSRule</a> {
    1.42 -  [PutForwards=<a href="#dom-cssstyledeclaration-csstext" title="dom-CSSStyleDeclaration-cssText">cssText</a>] readonly attribute <a href="#cssstyledeclaration">CSSStyleDeclaration</a> <!--
    1.43 -  --><a href="#dom-cssfontfacerule-style" title="dom-CSSFontFaceRule-style">style</a>;
    1.44 -};</pre>
    1.45 -
    1.46 -<p>The <dfn id="dom-cssfontfacerule-style" title="dom-CSSFontFaceRule-style"><code>style</code></dfn> attribute must return a <code><a href="#cssstyledeclaration">CSSStyleDeclaration</a></code> block that contains the property
    1.47 -declarations specified within the <code title="">@font-face</code> at-rule.</p>
    1.48 -
    1.49 -
    1.50 -<h4 id="the-csspagerule-interface"><span class="secno">6.4.9 </span>The <code title="">CSSPageRule</code> Interface</h4>
    1.51 +<h4 id="the-csspagerule-interface"><span class="secno">6.4.8 </span>The <code title="">CSSPageRule</code> Interface</h4>
    1.52   
    1.53  <p>The <code><a href="#csspagerule">CSSPageRule</a></code> interface represents an <code title="">@page</code> at-rule.</p>
    1.54  <p class="issue">Need to define the rules for
    1.55 @@ -2062,7 +2048,7 @@
    1.56  at-rule.</p>
    1.57  
    1.58  
    1.59 -<h4 id="the-cssnamespacerule-interface"><span class="secno">6.4.10 </span>The <code title="">CSSNamespaceRule</code> Interface</h4>
    1.60 +<h4 id="the-cssnamespacerule-interface"><span class="secno">6.4.9 </span>The <code title="">CSSNamespaceRule</code> Interface</h4>
    1.61  
    1.62  <p>The <code><a href="#cssnamespacerule">CSSNamespaceRule</a></code> interface represents an <code title="">@namespace</code> at-rule.</p>
    1.63  
     2.1 --- a/cssom/Overview.src.html	Thu Jun 27 15:06:09 2013 +0200
     2.2 +++ b/cssom/Overview.src.html	Thu Jun 27 15:20:19 2013 +0200
     2.3 @@ -1690,7 +1690,7 @@
     2.4   <dt><code>CSSMediaRule</code></dt>
     2.5   <dd><p class="issue">...</p></dd>
     2.6  
     2.7 - <dt><code>CSSFontFaceRule</code></dt>
     2.8 + <dt><code title>CSSFontFaceRule</code></dt>
     2.9   <dd><p class="issue">...</p></dd>
    2.10  
    2.11   <dt><code>CSSPageRule</code></dt>
    2.12 @@ -1805,7 +1805,7 @@
    2.13   <dd><p>Return <dfn title=dom-CSSRule-IMPORT_RULE><code>IMPORT_RULE</code></dfn> (numberic value 3).
    2.14   <dt>If the object is a <code>CSSMediaRule</code>
    2.15   <dd><p>Return <dfn title=dom-CSSRule-MEDIA_RULE><code>MEDIA_RULE</code></dfn> (numeric value 4).
    2.16 - <dt>If the object is a <code>CSSFontFaceRule</code>
    2.17 + <dt>If the object is a <code title>CSSFontFaceRule</code>
    2.18   <dd><p>Return <dfn title=dom-CSSRule-FONT_FACE_RULE><code>FONT_FACE_RULE</code></dfn> (numeric value 5).
    2.19   <dt>If the object is a <code>CSSPageRule</code>
    2.20   <dd><p>Return <dfn title=dom-CSSRule-PAGE_RULE><code>PAGE_RULE</code></dfn> (numeric value 6).
    2.21 @@ -1944,19 +1944,6 @@
    2.22  with the <code title>@media</code> at-rule.</p>
    2.23  
    2.24  
    2.25 -<h4>The <code title>CSSFontFaceRule</code> Interface</h4>
    2.26 -
    2.27 -<p>The <code>CSSFontFaceRule</code> interface represents an <code title>@font-face</code> at-rule.</p>
    2.28 -
    2.29 -<pre class=idl>interface <dfn>CSSFontFaceRule</dfn> : <span>CSSRule</span> {
    2.30 -  [PutForwards=<span title=dom-CSSStyleDeclaration-cssText>cssText</span>] readonly attribute <span>CSSStyleDeclaration</span> <!--
    2.31 -  --><span title=dom-CSSFontFaceRule-style>style</span>;
    2.32 -};</pre>
    2.33 -
    2.34 -<p>The <dfn title=dom-CSSFontFaceRule-style><code>style</code></dfn> attribute must return a <code>CSSStyleDeclaration</code> block that contains the property
    2.35 -declarations specified within the <code title>@font-face</code> at-rule.</p>
    2.36 -
    2.37 -
    2.38  <h4>The <code title>CSSPageRule</code> Interface</h4>
    2.39   
    2.40  <p>The <code>CSSPageRule</code> interface represents an <code title>@page</code> at-rule.</p>

mercurial