[css-transitions] Make transitionend event not be cancellable.

Thu, 09 Jan 2014 17:32:11 -0800

author
L. David Baron <dbaron@dbaron.org>
date
Thu, 09 Jan 2014 17:32:11 -0800
changeset 9718
c68eecb7c288
parent 9717
5d1193862316
child 9719
9df4548267c7

[css-transitions] Make transitionend event not be cancellable.

Fixes https://www.w3.org/Bugs/Public/show_bug.cgi?id=21101 .

This is since it has no default action, so cancelling it would have no
meaning. It also matches the animation events.

css-transitions/Overview.html file | annotate | diff | comparison | revisions
css-transitions/Overview.src.html file | annotate | diff | comparison | revisions
     1.1 --- a/css-transitions/Overview.html	Thu Jan 09 15:58:07 2014 +0100
     1.2 +++ b/css-transitions/Overview.html	Thu Jan 09 17:32:11 2014 -0800
     1.3 @@ -10,7 +10,7 @@
     1.4     rel=dcterms.rights>
     1.5    <meta content="CSS Transitions" name=dcterms.title>
     1.6    <meta content=text name=dcterms.type>
     1.7 -  <meta content=2014-01-08 name=dcterms.date>
     1.8 +  <meta content=2014-01-09 name=dcterms.date>
     1.9    <meta content="L. David Baron" name=dcterms.creator>
    1.10    <meta content=W3C name=dcterms.publisher>
    1.11    <meta content="http://dev.w3.org/csswg/css3-transitions/"
    1.12 @@ -40,7 +40,7 @@
    1.13  
    1.14     <h1>CSS Transitions</h1>
    1.15  
    1.16 -   <h2 class="no-num no-toc">Editor's Draft 8 January 2014</h2>
    1.17 +   <h2 class="no-num no-toc">Editor's Draft 9 January 2014</h2>
    1.18  
    1.19     <dl>
    1.20      <dt>This version:
    1.21 @@ -1312,7 +1312,7 @@
    1.22      <ul>
    1.23       <li>Bubbles: Yes
    1.24  
    1.25 -     <li>Cancelable: Yes
    1.26 +     <li>Cancelable: No
    1.27  
    1.28       <li>Context Info: propertyName, elapsedTime, pseudoElement
    1.29      </ul>
    1.30 @@ -1766,6 +1766,10 @@
    1.31     Draft dated 19 November 2013</a>:
    1.32  
    1.33    <ul>
    1.34 +   <li>The transitionend event is no longer cancellable. This is since it has
    1.35 +    no default action, so cancelling it would have no meaning. It also
    1.36 +    matches the animation events.
    1.37 +
    1.38     <li class=issue>... ADD CHANGES HERE ...
    1.39    </ul>
    1.40  
     2.1 --- a/css-transitions/Overview.src.html	Thu Jan 09 15:58:07 2014 +0100
     2.2 +++ b/css-transitions/Overview.src.html	Thu Jan 09 17:32:11 2014 -0800
     2.3 @@ -1354,7 +1354,7 @@
     2.4            <ul>
     2.5              <li>Bubbles: Yes
     2.6              </li>
     2.7 -            <li>Cancelable: Yes
     2.8 +            <li>Cancelable: No
     2.9              </li>
    2.10              <li>Context Info: propertyName, elapsedTime, pseudoElement
    2.11              </li>
    2.12 @@ -1753,6 +1753,7 @@
    2.13  dated 19 November 2013</a>:</p>
    2.14  
    2.15  <ul>
    2.16 +  <li>The transitionend event is no longer cancellable.  This is since it has no default action, so cancelling it would have no meaning.  It also matches the animation events.</p>
    2.17    <li class="issue">... ADD CHANGES HERE ...
    2.18  </ul>
    2.19  

mercurial