- From: SVG Working Group repository <cam+svgwgrepo@mcc.id.au>
- Date: Fri, 31 Jan 2014 17:32:10 -0800
- To: public-svg-wg@w3.org
details: https://svgwg.org/hg/svg2/rev/9a1b0b253f81
branches:
changeset: 585:9a1b0b253f81
user: Chris Lilley <chris@w3.org>
date: Sat Feb 01 02:28:20 2014 +0100
description:
test
details: https://svgwg.org/hg/svg2/rev/0346ff3b8efb
branches:
changeset: 586:0346ff3b8efb
user: Chris Lilley <chris@w3.org>
date: Sat Feb 01 02:29:59 2014 +0100
description:
test
diffstat:
master/changes.html | 2 ++
master/color.html | 2 ++
master/struct.html | 4 +++-
3 files changed, 7 insertions(+), 1 deletions(-)
diffs (73 lines):
diff --git a/master/changes.html b/master/changes.html
--- a/master/changes.html
+++ b/master/changes.html
@@ -99,16 +99,18 @@ have been made.</p>
<li>Lifted the restriction on <a>'use'</a> not being able to reference an entire document.</li>
<li>Added <a>'lang'</a> attribute on <a>'desc'</a> and <a>'title'</a> elements.</li>
<li>Added section on WAI-ARIA attributes.</li>
<li>Clarified that CSS transforms on an <a>outermost svg element</a> do not affect <a href="struct.html#__svg__SVGSVGElement__currentScale">currentScale</a> or <a href="struct.html#__svg__SVGSVGElement__currentTranslate">currentTranslate</a>. Defined the returned values on <a>'svg'</a> elements that are not <a>outermost svg element</a>.</li>
+
+ <li class="added-since-last-wd">Deprecated the <a href="struct.html#__svg__SVGDocument__rootElement">rootElement</a> attribute.</li>
</ul>
<h3 id="styling">Styling chapter</h3>
<ul>
<li>Removed the <span class="attr-name">'contentStyleType'</span> attribute.</li>
</ul>
diff --git a/master/color.html b/master/color.html
--- a/master/color.html
+++ b/master/color.html
@@ -122,16 +122,18 @@ ICC-based color specification is provide
<circle fill="hsl(30, 59%, 53%)"/></pre>
</div>
<p class="note">
Includes all syntactic forms supported by SVG 1.1, adds hsl() from [<a href="refs.html#ref-CSS3COLOR">CSS3COLOR</a>].</p>
<p class="note">See the CSS Color Module Level 3 specification for the
definition of the color type.
[<a href="refs.html#ref-CSS3COLOR">CSS3COLOR</a>]</p>
+
+ <p class="note">Must add the hsla and hsl forms.</p>
<div class="requirement" id="assert_base_syntax">
<p>All the syntactic forms for an sRGB color, including the full set of color keywords, shall be supported by an SVG 2 User Agent.</p>
</div>
<p>The rendering requirements for sRGB colors are more strict than for SVG 1.1 User Agents,
where color management is optional.</p>
<div class="requirement" id="assert_render_sRGB">
diff --git a/master/struct.html b/master/struct.html
--- a/master/struct.html
+++ b/master/struct.html
@@ -1963,22 +1963,24 @@ if the server cannot be identified by a
</div>
</dd>
<dt id="__svg__SVGDocument__rootElement" class="attribute"><b>rootElement</b><span class="idl-type-parenthetical"> (readonly <a class="idlinterface" href="struct.html#InterfaceSVGSVGElement">SVGSVGElement</a>)</span></dt>
<dd class="attribute">
<div>
The root <a>'svg'</a> in the document hierarchy.
+This attribute is deprecated, and may be removed in a future svg specification.
+Authors are encouraged to use the <a href="http://www.w3.org/TR/dom/#dom-document-documentelement">documentElement</a> attribute in Document instead.
</div>
</dd>
<dt id="__svg__SVGDocument__activeElement" class="attribute"><b>activeElement</b><span class="idl-type-parenthetical"> (readonly Element)</span></dt>
<dd class="attribute">
<div>
-The activeElement attribute must return the element in the document that is focused. If no element in the Document is focused, this must return the <a href="struct.html#__svg__SVGDocument__rootElement">rootElement</a>.
+The activeElement attribute must return the element in the document that is focused. If no element in the Document is focused, this must return the <a href="http://www.w3.org/TR/dom/#dom-document-documentelement">documentElement</a>.
</div>
</dd>
</dl>
</dd>
</dl>
<h3 id="InterfaceSVGSVGElement">Interface SVGSVGElement</h3>
Received on Saturday, 1 February 2014 01:32:35 UTC