You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>The <dfnid="associated-style-sheet">associated style sheet</dfn> of a node is the <span>style sheet</span> in the list of <ahref="#document-style-sheets">document style sheets</a> of which the <ahref="#style-sheet-owner-node">style sheet owner node</a> implements the <code>LinkStyle</code> interface.</p>
<code>sheet</code> of type <spanclass="idlAttrType"><a>StyleSheet</a></span>, readonly</dt>
1335
+
<code>sheet</code> of type <spanclass="idlAttrType"><a>StyleSheet</a>?</span>, readonly</dt>
1336
1336
<dd>
1337
-
<p>The <code>sheet</code> attribute must return the <ahref="#associated-style-sheet">associated style sheet</a> for the node, or <code>null</code>, if there is no <ahref="#associated-style-sheet">associated style sheet</a>.</dd>
1337
+
<p>The <code>sheet</code> attribute must return the <ahref="#associated-style-sheet">associated style sheet</a> for the node or <code>null</code> if there is no <ahref="#associated-style-sheet">associated style sheet</a>.</dd>
1338
1338
</dl>
1339
1339
1340
1340
1341
1341
<divclass="example">
1342
-
<p>In the following HTML snippet the first HTML<code>style</code>
1342
+
<p>In the following fragment, the first <code>style</code>
1343
1343
element has a <code>sheet</code> attribute that returns a
1344
1344
<code>StyleSheet</code> object representing the style sheet, but for
1345
-
the second <code>style</code>attribute it returns <code>null</code>.
1346
-
(Assuming the user agent supports CSS (<code>text/css</code>) and does
1347
-
not support ExampleSheets (<code>text/example-sheets</code>).</p>
1345
+
the second <code>style</code>element, the <code>style</code> attribute returns <code>null</code>,
1346
+
assuming the user agent supports CSS (<code>text/css</code>), but does
1347
+
not support the (hypothetical) ExampleSheets (<code>text/example-sheets</code>).</p>
1348
1348
1349
-
<pre><style type=text/css> body { background:lime } </style>
0 commit comments