Skip to content

Commit ba17e32

Browse files
author
Simon Pieters
committed
[cssom] Add [PutForwards=cssText] on all style attributes. https://www.w3.org/Bugs/Public/show_bug.cgi?id=22206
1 parent a0f1dd5 commit ba17e32

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

cssom/Overview.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<h1>CSS Object Model (CSSOM)</h1>
3333

3434

35-
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 29 May 2013</h2>
35+
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 30 May 2013</h2>
3636

3737
<dl>
3838

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

98-
<p class="dontpublish">This is the 29 May 2013 Editor's Draft of CSSOM. Please send comments to
98+
<p class="dontpublish">This is the 30 May 2013 Editor's Draft of CSSOM. Please send comments to
9999
<a href="mailto:www-style@w3.org?subject=%5Bcssom%5D%20">www-style@w3.org</a>
100100
(<a href="http://lists.w3.org/Archives/Public/www-style/">archived</a>)
101101
with <samp>[cssom]</samp> at the start of the subject line.
@@ -1868,7 +1868,7 @@ <h4 id="the-cssstylerule-interface"><span class="secno">6.4.3 </span>The <code t
18681868

18691869
<pre class="idl">interface <dfn id="cssstylerule">CSSStyleRule</dfn> : <a href="#cssrule">CSSRule</a> {
18701870
attribute DOMString <a href="#dom-cssstylerule-selectortext" title="dom-CSSStyleRule-selectorText">selectorText</a>;
1871-
readonly attribute <a href="#cssstyledeclaration">CSSStyleDeclaration</a> <a href="#dom-cssstylerule-style" title="dom-CSSStyleRule-style">style</a>;
1871+
[PutForwards=cssText] readonly attribute <a href="#cssstyledeclaration">CSSStyleDeclaration</a> <a href="#dom-cssstylerule-style" title="dom-CSSStyleRule-style">style</a>;
18721872
};</pre>
18731873

18741874
<p>The <dfn id="dom-cssstylerule-selectortext" title="dom-CSSStyleRule-selectorText"><code>selectorText</code></dfn> attribute, on getting, must return the result of <a href="#serialize-a-group-of-selectors" title="serialize a group of selectors">serializing</a> the associated
@@ -1945,7 +1945,7 @@ <h4 id="the-cssfontfacerule-interface"><span class="secno">6.4.7 </span>The <cod
19451945
<p>The <code><a href="#cssfontfacerule">CSSFontFaceRule</a></code> interface represents a <code>@font-face</code> rule.</p>
19461946

19471947
<pre class="idl">interface <dfn id="cssfontfacerule">CSSFontFaceRule</dfn> : <a href="#cssrule">CSSRule</a> {
1948-
readonly attribute <a href="#cssstyledeclaration">CSSStyleDeclaration</a> <a href="#dom-cssfontfacerule-style" title="dom-CSSFontFaceRule-style">style</a>;
1948+
[PutForwards=cssText] readonly attribute <a href="#cssstyledeclaration">CSSStyleDeclaration</a> <a href="#dom-cssfontfacerule-style" title="dom-CSSFontFaceRule-style">style</a>;
19491949
};</pre>
19501950

19511951
<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
@@ -1961,7 +1961,7 @@ <h4 id="the-csspagerule-interface"><span class="secno">6.4.8 </span>The <code ti
19611961

19621962
<pre class="idl">interface <dfn id="csspagerule">CSSPageRule</dfn> : <a href="#cssrule">CSSRule</a> {
19631963
attribute DOMString <a href="#dom-csspagerule-selectortext" title="dom-CSSPageRule-selectorText">selectorText</a>;
1964-
readonly attribute <a href="#cssstyledeclaration">CSSStyleDeclaration</a> <a href="#dom-csspagerule-style" title="dom-CSSPageRule-style">style</a>;
1964+
[PutForwards=cssText] readonly attribute <a href="#cssstyledeclaration">CSSStyleDeclaration</a> <a href="#dom-csspagerule-style" title="dom-CSSPageRule-style">style</a>;
19651965
};</pre>
19661966

19671967
<p>The <dfn id="dom-csspagerule-selectortext" title="dom-CSSPageRule-selectorText"><code>selectorText</code></dfn> attribute, on getting, must return the result of <a href="#serialize-a-css-page-selector" title="serialize a CSS page selector">serializing</a>

cssom/Overview.src.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1798,7 +1798,7 @@ <h4>The <code title>CSSStyleRule</code> Interface</h4>
17981798

17991799
<pre class=idl>interface <dfn>CSSStyleRule</dfn> : <span>CSSRule</span> {
18001800
attribute DOMString <span title=dom-CSSStyleRule-selectorText>selectorText</span>;
1801-
readonly attribute <span>CSSStyleDeclaration</span> <span title=dom-CSSStyleRule-style>style</span>;
1801+
[PutForwards=cssText] readonly attribute <span>CSSStyleDeclaration</span> <span title=dom-CSSStyleRule-style>style</span>;
18021802
};</pre>
18031803

18041804
<p>The <dfn title=dom-CSSStyleRule-selectorText><code>selectorText</code></dfn> attribute, on getting, must return the result of <span title='serialize a group of selectors'>serializing</span> the associated
@@ -1875,7 +1875,7 @@ <h4>The <code title>CSSFontFaceRule</code> Interface</h4>
18751875
<p>The <code>CSSFontFaceRule</code> interface represents a <code>@font-face</code> rule.</p>
18761876

18771877
<pre class=idl>interface <dfn>CSSFontFaceRule</dfn> : <span>CSSRule</span> {
1878-
readonly attribute <span>CSSStyleDeclaration</span> <span title=dom-CSSFontFaceRule-style>style</span>;
1878+
[PutForwards=cssText] readonly attribute <span>CSSStyleDeclaration</span> <span title=dom-CSSFontFaceRule-style>style</span>;
18791879
};</pre>
18801880

18811881
<p>The <dfn title=dom-CSSFontFaceRule-style><code>style</code></dfn> attribute must return a <code>CSSStyleDeclaration</code> block that contains the property
@@ -1891,7 +1891,7 @@ <h4>The <code title>CSSPageRule</code> Interface</h4>
18911891

18921892
<pre class=idl>interface <dfn>CSSPageRule</dfn> : <span>CSSRule</span> {
18931893
attribute DOMString <span title=dom-CSSPageRule-selectorText>selectorText</span>;
1894-
readonly attribute <span>CSSStyleDeclaration</span> <span title=dom-CSSPageRule-style>style</span>;
1894+
[PutForwards=cssText] readonly attribute <span>CSSStyleDeclaration</span> <span title=dom-CSSPageRule-style>style</span>;
18951895
};</pre>
18961896

18971897
<p>The <dfn title=dom-CSSPageRule-selectorText><code>selectorText</code></dfn> attribute, on getting, must return the result of <span title='serialize a CSS page selector'>serializing</span>

0 commit comments

Comments
 (0)