- From: SVG Working Group repository <cam+svgwgrepo@mcc.id.au>
- Date: Sat, 01 Feb 2014 20:18:17 -0800
- To: public-svg-wg@w3.org
details: https://svgwg.org/hg/svg2/rev/203e4299ef7a branches: changeset: 594:203e4299ef7a user: Cameron McCormack <cam@mcc.id.au> date: Sun Feb 02 15:16:27 2014 +1100 description: Fix SVGElement.tabIndex type and some typos. diffstat: master/types.html | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diffs (41 lines): diff --git a/master/types.html b/master/types.html --- a/master/types.html +++ b/master/types.html @@ -1444,17 +1444,17 @@ SVG language (such as the <a>SVGPathElem readonly attribute <a class="idlinterface" href="types.html#InterfaceSVGAnimatedString">SVGAnimatedString</a> <a href="types.html#__svg__SVGElement__className">className</a>; readonly attribute <a class="idlinterface" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/css.html#CSS-CSSStyleDeclaration">CSSStyleDeclaration</a> <a href="types.html#__svg__SVGElement__style">style</a>; attribute DOMString <a href="types.html#__svg__SVGElement__xmllang">xmllang</a>; attribute DOMString <a href="types.html#__svg__SVGElement__xmlspace">xmlspace</a>; readonly attribute <a class="idlinterface" href="struct.html#InterfaceSVGSVGElement">SVGSVGElement</a>? <a href="types.html#__svg__SVGElement__ownerSVGElement">ownerSVGElement</a>; readonly attribute <a class="idlinterface" href="types.html#InterfaceSVGElement">SVGElement</a>? <a href="types.html#__svg__SVGElement__viewportElement">viewportElement</a>; - readonly attribute <a href="types.html#DataTypeNumber">number</a> <a href="types.html#__svg__SVGElement__tabindex">tabIndex</a>; + readonly attribute long <a href="types.html#__svg__SVGElement__tabIndex">tabIndex</a>; void <a href="types.html#__svg__SVGElement__focus">focus</a>(); void <a href="types.html#__svg__SVGElement__blur">blur</a>(); }; <a>SVGElement</a> implements <a>GlobalEventHandlers</a>;</pre> <dl class="interface"> <dt class="attributes-header">Attributes:</dt> @@ -1516,17 +1516,17 @@ SVG language (such as the <a>SVGPathElem <dt id="__svg__SVGElement__viewportElement" class="attribute"><b>viewportElement</b><span class="idl-type-parenthetical"> (readonly <a class="idlinterface" href="types.html#InterfaceSVGElement">SVGElement</a>)</span></dt> <dd class="attribute"> <div> The element which established the current viewport. Often, the nearest ancestor <a>'svg'</a> element. Null if the given element is the <a>outermost svg element</a>. </div> </dd> - <dt id="__svg__SVGElement__tabindex" class="attribute"><b>tabindex</b><span class="idl-type-parenthetical"> (readonly <a class="idlinterface" href="types.html#DataTypeNumber">number</a>)</span></dt> + <dt id="__svg__SVGElement__tabIndex" class="attribute"><b>tabIndex</b><span class="idl-type-parenthetical"> (readonly long)</span></dt> <dd class="attribute"> <div> The tabIndex attribute must <a href="http://www.w3.org/TR/html5/infrastructure.html#reflect">reflect</a> the value of the <a href="interact.html#sequential-focus-navigation-and-the-tabindex-attribute">tabindex</a> content attribute. Its default value is 0 for elements that are directly focusable, such as through keyboard tabbing in browsers that support that functionality, and −1 for elements that are not focusable without programmatic intervention. </div> </dd> </dl> </dd> <dt class="operations">Operations:</dt>
Received on Sunday, 2 February 2014 04:18:41 UTC