Skip to content

Commit

Permalink
Merge pull request w3c#790 from stephenmcgruer/smcgruer/time-event
Browse files Browse the repository at this point in the history
  • Loading branch information
tabatkins committed May 26, 2020
2 parents ac68ee6 + fb23c4d commit 693d8cc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
1 change: 1 addition & 0 deletions master/definitions.xml
Expand Up @@ -1148,6 +1148,7 @@
<interface name='Node' href='https://dom.spec.whatwg.org/#interface-node'/>
<interface name='NodeList' href='https://dom.spec.whatwg.org/#interface-nodelist'/>
<interface name='Window' href='https://html.spec.whatwg.org/multipage/window-object.html#window'/>
<interface name='WindowProxy' href='https://html.spec.whatwg.org/multipage/window-object.html#windowproxy'/>
<interface name='WindowEventHandlers' href='https://html.spec.whatwg.org/multipage/webappapis.html#windoweventhandlers'/>
<interface name='Animation' href='https://www.w3.org/TR/web-animations-1/#the-animation-interface' />
<interface name='isPointInPath' href='https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-ispointinpath' />
Expand Down
17 changes: 8 additions & 9 deletions specs/animations/master/Overview.html
Expand Up @@ -3294,21 +3294,20 @@ <h3 id="InterfaceTimeEvent">Interface TimeEvent</h3>

<pre class="idl">interface <b>TimeEvent</b> : <a>Event</a> {

readonly attribute <a>AbstractView</a> <a href="#__svg__TimeEvent__view">view</a>;
readonly attribute <a>WindowProxy</a>? <a href="#__svg__TimeEvent__view">view</a>;
readonly attribute long <a href="#__svg__TimeEvent__detail">detail</a>;

void <a href="#__svg__TimeEvent__initTimeEvent">initTimeEvent</a>(DOMString typeArg, <a>AbstractView</a> viewArg, long detailArg);
void <a href="#__svg__TimeEvent__initTimeEvent">initTimeEvent</a>(DOMString typeArg, <a>Window</a>? viewArg, long detailArg);
};</pre>

<dl class="interface">
<dt class="attributes-header">Attributes:</dt>
<dd>
<dl class="attributes">
<dt id="__svg__TimeEvent__view" class="attribute first-child"><b>view</b><span class="idl-type-parenthetical"> (readonly <a>AbstractView</a>)</span></dt>
<dt id="__svg__TimeEvent__view" class="attribute first-child"><b>view</b><span class="idl-type-parenthetical"> (readonly <a>WindowProxy</a>?)</span></dt>
<dd class="attribute">
<div>The <a>TimeEvent::view</a> attribute identifies the <a>AbstractView</a>
[<a href="#ref-DOM2VIEWS">DOM2VIEWS</a>] from which the event
was generated.</div>
<div>The <a>TimeEvent::view</a> attribute identifies the <a>Window</a>
from which the event was generated.</div>
</dd>
<dt id="__svg__TimeEvent__detail" class="attribute"><b>detail</b><span class="idl-type-parenthetical"> (readonly long)</span></dt>
<dd class="attribute">
Expand All @@ -3321,7 +3320,7 @@ <h3 id="InterfaceTimeEvent">Interface TimeEvent</h3>
<dt class="operations-header">Operations:</dt>
<dd>
<dl class="attributes">
<dt id="__svg__TimeEvent__initTimeEvent" class="operation first-child">void <b>initTimeEvent</b>(DOMString <var>typeArg</var>, <a>AbstractView</a> <var>viewArg</var>, long <var>detailArg</var>)</dt>
<dt id="__svg__TimeEvent__initTimeEvent" class="operation first-child">void <b>initTimeEvent</b>(DOMString <var>typeArg</var>, <a>Window</a>? <var>viewArg</var>, long <var>detailArg</var>)</dt>
<dd class="operation">
<div>The <a>TimeEvent::initTimeEvent</a> method is used to initialize the value of a
<a>TimeEvent</a> created with <code>document.createEvent()</code>. This
Expand All @@ -3338,8 +3337,8 @@ <h3 id="InterfaceTimeEvent">Interface TimeEvent</h3>
<div>Specifies the event type.</div>
</li>
<li class="parameter">
<div><a>AbstractView</a> <var>viewArg</var></div>
<div>Specifies the Event's <a>AbstractView</a>.</div>
<div><a>Window</a>? <var>viewArg</var></div>
<div>Specifies the Event's <a>Window</a>.</div>
</li>
<li class="parameter">
<div>long <var>detailArg</var></div>
Expand Down

0 comments on commit 693d8cc

Please sign in to comment.