Skip to content

Commit 13afe5e

Browse files
author
Simon Pieters
committed
[cssom] MediaList.item should be nullable. https://www.w3.org/Bugs/Public/show_bug.cgi?id=23452
1 parent 0c86804 commit 13afe5e

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

cssom/Overview.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<h1>CSS Object Model (CSSOM)</h1>
1717

1818

19-
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 19 September 2013</h2>
19+
<h2 class="no-num no-toc" id="w3c-doctype">Editor's Draft 7 October 2013</h2>
2020

2121
<dl>
2222

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

93-
<p class="dontpublish">This is the 19 September 2013 Editor's Draft of CSSOM. Please send comments to
93+
<p class="dontpublish">This is the 7 October 2013 Editor's Draft of CSSOM. Please send comments to
9494
<a href="mailto:www-style@w3.org?subject=%5Bcssom%5D%20">www-style@w3.org</a>
9595
(<a href="http://lists.w3.org/Archives/Public/www-style/">archived</a>)
9696
with <samp>[cssom]</samp> at the start of the subject line.
@@ -582,7 +582,7 @@ <h3 id="the-medialist-interface"><span class="secno">4.4 </span>The <code title=
582582
interface <dfn id="medialist">MediaList</dfn> {
583583
[TreatNullAs=EmptyString] stringifier attribute DOMString <a href="#dom-medialist-mediatext" title="dom-MediaList-mediaText">mediaText</a>;
584584
readonly attribute unsigned long <a href="#dom-medialist-length" title="dom-MediaList-length">length</a>;
585-
getter DOMString <a href="#dom-medialist-item" title="dom-MediaList-item">item</a>(unsigned long index);
585+
getter DOMString? <a href="#dom-medialist-item" title="dom-MediaList-item">item</a>(unsigned long index);
586586
void <a href="#dom-medialist-appendmedium" title="dom-MediaList-appendMedium">appendMedium</a>(DOMString medium);
587587
void <a href="#dom-medialist-deletemedium" title="dom-MediaList-deleteMedium">deleteMedium</a>(DOMString medium);
588588
};</pre>
@@ -3298,6 +3298,7 @@ <h2 class="no-num" id="acknowledgments">Acknowledgments</h2>
32983298
Lachlan Hunt,
32993299
Mike Sherov,
33003300
Morten Stenshorne,
3301+
Ms2ger,
33013302
Øyvind Stenhaug,
33023303
Peter Sloetjes,
33033304
Philip Taylor,

cssom/Overview.src.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ <h3>The <code title>MediaList</code> Interface</h3>
502502
interface <dfn>MediaList</dfn> {
503503
[TreatNullAs=EmptyString] stringifier attribute DOMString <span title=dom-MediaList-mediaText>mediaText</span>;
504504
readonly attribute unsigned long <span title=dom-MediaList-length>length</span>;
505-
getter DOMString <span title=dom-MediaList-item>item</span>(unsigned long index);
505+
getter DOMString? <span title=dom-MediaList-item>item</span>(unsigned long index);
506506
void <span title=dom-MediaList-appendMedium>appendMedium</span>(DOMString medium);
507507
void <span title=dom-MediaList-deleteMedium>deleteMedium</span>(DOMString medium);
508508
};</pre>
@@ -3170,6 +3170,7 @@ <h2 class="no-num">Acknowledgments</h2>
31703170
Lachlan Hunt,
31713171
Mike Sherov,
31723172
Morten Stenshorne,
3173+
Ms2ger,
31733174
Øyvind Stenhaug,
31743175
Peter Sloetjes,
31753176
Philip Taylor,

0 commit comments

Comments
 (0)