css-transitions/Overview.bs

changeset 19183
12cf31ee527b
parent 18890
b8bb70aa7e3a
child 19383
68f652c3f1eb
     1.1 --- a/css-transitions/Overview.bs	Fri Apr 21 14:39:57 2017 +0900
     1.2 +++ b/css-transitions/Overview.bs	Fri Apr 21 14:42:38 2017 +0900
     1.3 @@ -1096,30 +1096,30 @@
     1.4  ### IDL Definition ### {#interface-transitionevent-idl}
     1.5  
     1.6  <pre class="idl">
     1.7 -  [Constructor(DOMString type, optional TransitionEventInit transitionEventInitDict)]
     1.8 +  [Constructor(CSSOMString type, optional TransitionEventInit transitionEventInitDict)]
     1.9    interface TransitionEvent : Event {
    1.10 -    readonly attribute DOMString propertyName;
    1.11 +    readonly attribute CSSOMString propertyName;
    1.12      readonly attribute float elapsedTime;
    1.13 -    readonly attribute DOMString pseudoElement;
    1.14 +    readonly attribute CSSOMString pseudoElement;
    1.15    };
    1.16  
    1.17    dictionary TransitionEventInit : EventInit {
    1.18 -    DOMString propertyName = "";
    1.19 +    CSSOMString propertyName = "";
    1.20      float elapsedTime = 0.0;
    1.21 -    DOMString pseudoElement = "";
    1.22 +    CSSOMString pseudoElement = "";
    1.23    };
    1.24  </pre>
    1.25  
    1.26  ### Attributes ### {#interface-transitionevent-attributes}
    1.27  
    1.28 -:   <code class='attribute-name'><dfn attribute for="TransitionEvent" id="Events-TransitionEvent-propertyName">propertyName</dfn></code> of type <code>DOMString</code>, readonly
    1.29 +:   <code class='attribute-name'><dfn attribute for="TransitionEvent" id="Events-TransitionEvent-propertyName">propertyName</dfn></code> of type <code>CSSOMString</code>, readonly
    1.30  ::  The name of the CSS property associated with the transition.
    1.31      <p class="note">Note:  This is always the name of a longhand property.  See 'transition-property' for how specifying shorthand properties causes transitions on longhands.</p>
    1.32  :   <code class='attribute-name'><dfn attribute for="TransitionEvent" id="Events-TransitionEvent-elapsedTime">elapsedTime</dfn></code> of type <code>float</code>, readonly
    1.33  ::  The amount of time the transition has been running, in seconds, when this
    1.34      event fired not including any time spent in the delay phase.  The precise
    1.35      calculation for of this member is defined along with each event type.
    1.36 -:   <code class='attribute-name'><dfn attribute for="TransitionEvent" id="Events-TransitionEvent-pseudoElement">pseudoElement</dfn></code> of type <code>DOMString</code>, readonly
    1.37 +:   <code class='attribute-name'><dfn attribute for="TransitionEvent" id="Events-TransitionEvent-pseudoElement">pseudoElement</dfn></code> of type <code>CSSOMString</code>, readonly
    1.38  ::  The name (beginning with two colons) of the CSS
    1.39      pseudo-element on which the transition occurred (in
    1.40      which case the target of the event is that

mercurial