Skip to content

Commit cc905ef

Browse files
committed
merge from tip
2 parents c4f0645 + b20326c commit cc905ef

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

cssom/Overview.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h1 id="cssom">CSS Object Model (CSSOM)</h1>
1818

1919
<!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
2020

21-
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 21 August 2012</h2>
21+
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 31 August 2012</h2>
2222

2323
<dl>
2424

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

86-
<p class="dontpublish">This is the 21 August 2012 Editor's Draft of CSSOM. Please send comments to
86+
<p class="dontpublish">This is the 31 August 2012 Editor's Draft of CSSOM. Please send comments to
8787
<a href="mailto:www-style@w3.org?subject=%5Bcssom%5D%20">www-style@w3.org</a>
8888
(<a href="http://lists.w3.org/Archives/Public/www-style/">archived</a>)
8989
with <samp>[cssom]</samp> at the start of the subject line.
@@ -1633,8 +1633,8 @@ <h4 id="the-cssrule-interface"><span class="secno">6.4.2 </span>The <code>CSSRul
16331633
<span class="idlConst"> const <span class="idlConstType"><a>unsigned short</a></span> <span class="idlConstName"><a href="#widl-CSSRule-NAMESPACE_RULE">NAMESPACE_RULE</a></span> = <span class="idlConstValue">10</span>;</span>
16341634
<span class="idlAttribute"> readonly attribute <span class="idlAttrType"><a>unsigned short</a></span> <span class="idlAttrName"><a href="#widl-CSSRule-type">type</a></span>;</span>
16351635
<span class="idlAttribute"> attribute <span class="idlAttrType"><a>DOMString</a></span> <span class="idlAttrName"><a href="#widl-CSSRule-cssText">cssText</a></span>;</span>
1636-
<span class="idlAttribute"> readonly attribute <span class="idlAttrType"><a>CSSRule</a></span> <span class="idlAttrName"><a href="#widl-CSSRule-parentRule">parentRule</a></span>;</span>
1637-
<span class="idlAttribute"> readonly attribute <span class="idlAttrType"><a>CSSStyleSheet</a></span> <span class="idlAttrName"><a href="#widl-CSSRule-parentStyleSheet">parentStyleSheet</a></span>;</span>
1636+
<span class="idlAttribute"> readonly attribute <span class="idlAttrType"><a>CSSRule</a>?</span> <span class="idlAttrName"><a href="#widl-CSSRule-parentRule">parentRule</a></span>;</span>
1637+
<span class="idlAttribute"> readonly attribute <span class="idlAttrType"><a>CSSStyleSheet</a>?</span> <span class="idlAttrName"><a href="#widl-CSSRule-parentStyleSheet">parentStyleSheet</a></span>;</span>
16381638
};</span></pre>
16391639
<dl class="constants">
16401640
<dt class="constant" id="widl-CSSRule-STYLE_RULE">

cssom/idl/CSSRule.idl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@ interface CSSRule {
9494
there is no enclosing rule.</p>\
9595
<p class='note'>For example, <code>@media</code> can enclose a rule.</p>"
9696
]
97-
readonly attribute CSSRule parentRule;
97+
readonly attribute CSSRule? parentRule;
9898

9999
[Documentation=
100100
"<p>The {@name} {@type} must return the <code>CSSStyleSheet</code> object that contains the the\
101101
current rule.</p>"
102102
]
103-
readonly attribute CSSStyleSheet parentStyleSheet;
103+
readonly attribute CSSStyleSheet? parentStyleSheet;
104104

105105
};

0 commit comments

Comments
 (0)