[cssom] Editorial: make getComputedStyle's second argument nullable. Fixes https://www.w3.org/Bugs/Public/show_bug.cgi?id=27633

Wed, 17 Dec 2014 10:52:05 +0100

author
Simon Pieters <simonp@opera.com>
date
Wed, 17 Dec 2014 10:52:05 +0100
changeset 14925
547cd57f5983
parent 14924
be563538d1d0
child 14926
c7472cbfaf54

[cssom] Editorial: make getComputedStyle's second argument nullable. Fixes https://www.w3.org/Bugs/Public/show_bug.cgi?id=27633

cssom/Overview.html file | annotate | diff | comparison | revisions
cssom/Overview.src.html file | annotate | diff | comparison | revisions
     1.1 --- a/cssom/Overview.html	Wed Dec 17 10:45:16 2014 +0100
     1.2 +++ b/cssom/Overview.html	Wed Dec 17 10:52:05 2014 +0100
     1.3 @@ -2965,7 +2965,7 @@
     1.4  
     1.5  <pre class="idl">partial interface <a class="external" data-anolis-spec="html" href="https://html.spec.whatwg.org/multipage/browsers.html#window">Window</a> {
     1.6    [NewObject] <a href="#cssstyledeclaration">CSSStyleDeclaration</a> <!--
     1.7 -  --><a href="#dom-window-getcomputedstyle" title="dom-Window-getComputedStyle">getComputedStyle</a>(<a class="external" data-anolis-spec="dom" href="https://dom.spec.whatwg.org/#element">Element</a> elt, optional DOMString pseudoElt);
     1.8 +  --><a href="#dom-window-getcomputedstyle" title="dom-Window-getComputedStyle">getComputedStyle</a>(<a class="external" data-anolis-spec="dom" href="https://dom.spec.whatwg.org/#element">Element</a> elt, optional DOMString? pseudoElt);
     1.9  };</pre>
    1.10  
    1.11  <p>The <dfn id="dom-window-getcomputedstyle" title="dom-Window-getComputedStyle"><code>getComputedStyle(<var>elt</var>, <var>pseudoElt</var>)</code></dfn> method must run these
     2.1 --- a/cssom/Overview.src.html	Wed Dec 17 10:45:16 2014 +0100
     2.2 +++ b/cssom/Overview.src.html	Wed Dec 17 10:52:05 2014 +0100
     2.3 @@ -2882,7 +2882,7 @@
     2.4  
     2.5  <pre class=idl>partial interface <span data-anolis-spec=html>Window</span> {
     2.6    [NewObject] <span>CSSStyleDeclaration</span> <!--
     2.7 -  --><span title=dom-Window-getComputedStyle>getComputedStyle</span>(<span data-anolis-spec=dom>Element</span> elt, optional DOMString pseudoElt);
     2.8 +  --><span title=dom-Window-getComputedStyle>getComputedStyle</span>(<span data-anolis-spec=dom>Element</span> elt, optional DOMString? pseudoElt);
     2.9  };</pre>
    2.10  
    2.11  <p>The <dfn title=dom-Window-getComputedStyle><code>getComputedStyle(<var>elt</var>, <var>pseudoElt</var>)</code></dfn> method must run these

mercurial