Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions master/styling.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ <h2 id="StyleElement">Inline style sheets: the <span class='element-name'>'style
<tr>
<td><dfn id="StyleElementTypeAttribute" data-dfn-type="element-attr" data-dfn-for="style" data-export="">type</dfn></td>
<td>(see below)</td>
<td>text/css</td>
<td>(none)</td>
<td>no</td>
</tr>
</table>
Expand All @@ -91,7 +91,8 @@ <h2 id="StyleElement">Inline style sheets: the <span class='element-name'>'style
the element's contents, as a <a href="http://www.ietf.org/rfc/rfc2046.txt">media type</a>.
[<a href="refs.html#ref-rfc2046">rfc2046</a>].
If the attribute is not specified, then the
style sheet language is assumed to be CSS.</p>
style sheet language is assumed to be CSS.
This attribute is obsolete and should not be used.</p>
</dd>
<dt>
<table class="attrdef def">
Expand All @@ -104,7 +105,7 @@ <h2 id="StyleElement">Inline style sheets: the <span class='element-name'>'style
<tr>
<td><dfn id="StyleElementMediaAttribute" data-dfn-type="element-attr" data-dfn-for="style" data-export="">media</dfn></td>
<td>(see below)</td>
<td>all</td>
<td>(none)</td>
<td>no</td>
</tr>
</table>
Expand Down Expand Up @@ -726,10 +727,12 @@ <h3 id="InterfaceSVGStyleElement">Interface SVGStyleElement</h3>

<pre class="idl">[<a>Exposed</a>=Window]
interface <b>SVGStyleElement</b> : <a>SVGElement</a> {
attribute DOMString <a href="styling.html#__svg__SVGStyleElement__type">type</a>;
attribute DOMString <a href="styling.html#__svg__SVGStyleElement__media">media</a>;
attribute DOMString <a href="styling.html#__svg__SVGStyleElement__title">title</a>;
attribute boolean <a href="styling.html#__svg__SVGStyleElement__disabled">disabled</a>;

// obsolete members
attribute DOMString <a href="styling.html#__svg__SVGStyleElement__type">type</a>;
};

<a>SVGStyleElement</a> includes <a>LinkStyle</a>;</pre>
Expand Down