css-transitions/Overview.src.html

changeset 7847
f7490857b4eb
parent 7810
9d38acef4dfc
child 7857
23b4eae0ebde
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/css-transitions/Overview.src.html	Thu Mar 28 16:57:56 2013 -0700
     1.3 @@ -0,0 +1,1575 @@
     1.4 +<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01//EN'
     1.5 +  'http://www.w3.org/TR/html4/strict.dtd'>
     1.6 +
     1.7 +<html lang="en">
     1.8 +<head>
     1.9 +  <title>CSS Transitions</title>
    1.10 +  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    1.11 +  <link rel="stylesheet" type="text/css" href="../default.css">
    1.12 +  <style type="text/css">
    1.13 +    table.animatable-properties {
    1.14 +      border-collapse: collapse;
    1.15 +    }
    1.16 +    table.animatable-properties td {
    1.17 +      padding: 0.2em 1em;
    1.18 +      border: 1px solid black;
    1.19 +    }
    1.20 +    div.prod { margin: 1em 2em; }
    1.21 +  </style>
    1.22 +  <link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-[STATUS].css">
    1.23 +</head>
    1.24 +
    1.25 +<body>
    1.26 +
    1.27 +<div class="head">
    1.28 +<!--logo-->
    1.29 +
    1.30 +<h1>CSS Transitions</h1>
    1.31 +
    1.32 +<h2 class="no-num no-toc">[LONGSTATUS] [DATE]</h2>
    1.33 +<dl>
    1.34 +  <dt>This version:
    1.35 +    <dd>
    1.36 +    <a href="[VERSION]">[VERSION]</a>
    1.37 +  <dt>Latest version:
    1.38 +    <dd><a href="http://www.w3.org/TR/css3-transitions/">
    1.39 +      [LATEST]</a>
    1.40 +  <dt>Editor's draft:
    1.41 +    <dd><a href="http://dev.w3.org/csswg/[SHORTNAME]/">http://dev.w3.org/csswg/[SHORTNAME]/</a>
    1.42 +    (<a href="https://dvcs.w3.org/hg/csswg/log/tip/[SHORTNAME]/Overview.src.html">change log</a>)
    1.43 +  <dt>Previous version:
    1.44 +    <dd><a href="http://www.w3.org/TR/2013/WD-css3-transitions-20130212/">http://www.w3.org/TR/2013/WD-css3-transitions-20130212/</a>
    1.45 +  <dt id="editors-list">Editors:
    1.46 +    <dd><a href="mailto:dino@apple.com">Dean Jackson</a> (<a
    1.47 +      href="http://www.apple.com/">Apple Inc</a>)
    1.48 +    <dd><a href="mailto:hyatt@apple.com">David Hyatt</a> (<a
    1.49 +      href="http://www.apple.com/">Apple Inc</a>)
    1.50 +    <dd><a href="mailto:cmarrin@apple.com">Chris Marrin</a> (<a
    1.51 +      href="http://www.apple.com/">Apple Inc</a>)
    1.52 +    <dd class=vcard><a class=fn href="http://dbaron.org/">L. David Baron</a> (<a
    1.53 +      class=org href="http://www.mozilla.org/">Mozilla</a>)
    1.54 +
    1.55 +  <dt>Issues list:
    1.56 +    <dd><a href="https://www.w3.org/Bugs/Public/buglist.cgi?query_format=advanced&amp;product=CSS&amp;component=Transitions&amp;resolution=---&amp;cmdtype=doit">in Bugzilla</a>
    1.57 +
    1.58 +  <dt>Discussion:</dt>
    1.59 +    <dd><a href="http://lists.w3.org/Archives/Public/www-style/">www-style@w3.org</a> with subject line &ldquo;<kbd>[[SHORTNAME]] <var>&hellip; message topic &hellip;</var></kbd>&rdquo;
    1.60 +
    1.61 +  <dt>Test suite:
    1.62 +    <dd>none yet
    1.63 +</dl>
    1.64 +
    1.65 +<!--copyright-->
    1.66 +
    1.67 +<hr title="Separator for header">
    1.68 +</div>
    1.69 +
    1.70 +<h2 class="no-num no-toc" id="abstract">Abstract</h2>
    1.71 +
    1.72 +<p>CSS Transitions allows property changes in CSS values to occur smoothly
    1.73 +  over a specified duration.
    1.74 +
    1.75 +<h2 class="no-num no-toc" id="status">Status of this document</h2>
    1.76 +<!--status-->
    1.77 +
    1.78 +<p>
    1.79 +  The <a href="ChangeLog">list of changes made to this specification</a> is
    1.80 +  available.
    1.81 +</p>
    1.82 +
    1.83 +<h2 class="no-num no-toc" id="contents">Table of Contents</h2>
    1.84 +<!--toc-->
    1.85 +
    1.86 +
    1.87 +<h2 id="introduction">Introduction</h2>
    1.88 +
    1.89 +      <p><em>This section is not normative.</em>
    1.90 +      <p>
    1.91 +        This document introduces new CSS features to enable <em>implicit transitions</em>, which describe how CSS properties can be made to change smoothly from one value to another over a given duration.
    1.92 +      </p>
    1.93 +
    1.94 +<h2 id="transitions"><a id="transitions-">Transitions</a></h2>
    1.95 +      <p>
    1.96 +        Normally when the value of a CSS property changes, the rendered result is instantly updated, with the affected elements immediately changing from the old property value to the new property value. This section describes a way to specify transitions using new CSS properties. These properties are used to animate smoothly from the old state to the new state over time.
    1.97 +      </p>
    1.98 +      <p>
    1.99 +        For example, suppose that transitions of one second have been defined on the 'left' and
   1.100 +        'background-color' properties. The following diagram illustrates the effect of updating those properties on an element, in this case moving it to the right and changing the background from red to blue. This assumes other transition parameters still have their default values.
   1.101 +      </p>
   1.102 +      <div class="figure">
   1.103 +        <img src="transition1.png" alt="">
   1.104 +      </div>
   1.105 +      <p class="caption">
   1.106 +        Transitions of 'left' and 'background-color'
   1.107 +      </p>
   1.108 +      <p>
   1.109 +        Transitions are a presentational effect. The computed value of a property transitions over time from the old value to the new value. Therefore if a script queries the computed style of a property as it is transitioning, it will see an intermediate value that represents the current animated value of the property.
   1.110 +      </p>
   1.111 +      <p>
   1.112 +        Only animatable CSS properties can be transitioned. See the table at the end of this document for a list 
   1.113 +        of properties that are animatable.
   1.114 +      </p>
   1.115 +      <p>
   1.116 +        The transition for a property is defined using a number of new properties. For example:
   1.117 +      </p>
   1.118 +      <div class="example">
   1.119 +        <p style="display:none">
   1.120 +          Example(s):
   1.121 +        </p>
   1.122 +        <pre>
   1.123 +  div {
   1.124 +    transition-property: opacity;
   1.125 +    transition-duration: 2s;
   1.126 +  }
   1.127 +  </pre>The above example defines a transition on the 'opacity' property that, when a new value is assigned to it, will cause a smooth change between the old value and the new value over a period of two seconds.
   1.128 +      </div>
   1.129 +      <p>
   1.130 +        Each of the transition properties accepts a comma-separated list, allowing multiple transitions to be defined, each acting on a different property. In this case, the individual transitions take their parameters from the same index in all the lists. For example:
   1.131 +      </p>
   1.132 +      <div class="example">
   1.133 +        <p style="display:none">
   1.134 +          Example(s):
   1.135 +        </p>
   1.136 +        <pre>
   1.137 +  div {
   1.138 +    transition-property: opacity, left;
   1.139 +    transition-duration: 2s, 4s;
   1.140 +  }
   1.141 +
   1.142 +  </pre>This will cause the 'opacity' property to transition over a period of two seconds and the left property to transition over a period of four seconds.
   1.143 +      </div>
   1.144 +
   1.145 +      <p id="list-matching">
   1.146 +        In the case where the lists of values in transition properties
   1.147 +        do not have the same length, the length of the
   1.148 +        'transition-property' list determines the number of items in
   1.149 +        each list examined when starting transitions.  The lists are
   1.150 +        matched up from the first value: excess values at the end are
   1.151 +        not used.  If one of the other properties doesn't have enough
   1.152 +        comma-separated values to match the number of values of
   1.153 +        'transition-property', the UA must calculate its used value by
   1.154 +        repeating the list of values until there are enough.  This
   1.155 +        truncation or repetition does not affect the computed value.
   1.156 +        <span class="note">
   1.157 +          Note: This is analogous to the behavior of the 'background-*'
   1.158 +          properties, with 'background-image' analogous to
   1.159 +          'transition-property'.
   1.160 +        </span>
   1.161 +      </p>
   1.162 +
   1.163 +      <div class="example">
   1.164 +        <p style="display:none">
   1.165 +          Example(s):
   1.166 +        </p>
   1.167 +      <pre>
   1.168 +      div {
   1.169 +        transition-property: opacity, left, top, width;
   1.170 +        transition-duration: 2s, 1s;
   1.171 +      }
   1.172 +      </pre>The above example defines a transition on the 'opacity' property of 2 seconds duration, a
   1.173 +      transition on the 'left' property of 1
   1.174 +      second duration, a transition on the 'top' property of 2 seconds duration and a
   1.175 +      transition on the 'width' property of 1
   1.176 +      second duration.
   1.177 +      
   1.178 +      </div>
   1.179 +
   1.180 +      <p>
   1.181 +        While authors can use transitions to create dynamically changing content,
   1.182 +        dynamically changing content can lead to seizures in some users.
   1.183 +        For information on how to avoid content that can lead to seizures, see
   1.184 +        <a href="http://www.w3.org/TR/WCAG20/#seizure">Guideline 2.3:
   1.185 +        Seizures:
   1.186 +        Do not design content in a way that is known to cause seizures</a>
   1.187 +        ([[WCAG20]]).
   1.188 +      </p>
   1.189 +
   1.190 +      <!-- ======================================================================================================= -->
   1.191 +      <h3 id="transition-property-property"><a id="the-transition-property-property-">
   1.192 +        The 'transition-property' Property
   1.193 +      </a></h3>
   1.194 +      <p>
   1.195 +        The 'transition-property' property specifies the name of the CSS property to which the transition is applied.
   1.196 +      </p>
   1.197 +      <table class="propdef">
   1.198 +        <tbody>
   1.199 +          <tr>
   1.200 +            <td>
   1.201 +              <em>Name:</em>
   1.202 +            </td>
   1.203 +            <td>
   1.204 +              <dfn id="transition-property">transition-property</dfn>
   1.205 +            </td>
   1.206 +          </tr>
   1.207 +          <tr>
   1.208 +            <td>
   1.209 +              <em>Value:</em>
   1.210 +            </td>
   1.211 +            <td>
   1.212 +              none | <span>&lt;single-transition-property&gt;</span> [ ',' <span>&lt;single-transition-property&gt;</span> ]*
   1.213 +            </td>
   1.214 +          </tr>
   1.215 +          <tr>
   1.216 +            <td>
   1.217 +              <em>Initial:</em>
   1.218 +            </td>
   1.219 +            <td>
   1.220 +              all
   1.221 +            </td>
   1.222 +          </tr>
   1.223 +          <tr>
   1.224 +            <td>
   1.225 +              <em>Applies to:</em>
   1.226 +            </td>
   1.227 +            <td>
   1.228 +              all elements, :before and :after pseudo elements
   1.229 +            </td>
   1.230 +          </tr>
   1.231 +          <tr>
   1.232 +            <td>
   1.233 +              <em>Inherited:</em>
   1.234 +            </td>
   1.235 +            <td>
   1.236 +              no
   1.237 +            </td>
   1.238 +          </tr>
   1.239 +          <tr>
   1.240 +            <td>
   1.241 +              <em>Animatable:</em>
   1.242 +            </td>
   1.243 +            <td>
   1.244 +              no
   1.245 +            </td>
   1.246 +          </tr>
   1.247 +          <tr>
   1.248 +            <td>
   1.249 +              <em>Percentages:</em>
   1.250 +            </td>
   1.251 +            <td>
   1.252 +              N/A
   1.253 +            </td>
   1.254 +          </tr>
   1.255 +          <tr>
   1.256 +            <td>
   1.257 +              <em>Media:</em>
   1.258 +            </td>
   1.259 +            <td>
   1.260 +              visual
   1.261 +            </td>
   1.262 +          </tr>
   1.263 +          <tr>
   1.264 +            <td>
   1.265 +              <em>Computed value:</em>
   1.266 +            </td>
   1.267 +            <td>
   1.268 +              Same as specified value.
   1.269 +            </td>
   1.270 +          </tr>
   1.271 +          <tr>
   1.272 +            <td>
   1.273 +              <em>Canonical order:</em>
   1.274 +            </td>
   1.275 +            <td>
   1.276 +              <abbr title="follows order of property value definition">per grammar</abbr>
   1.277 +            </td>
   1.278 +          </tr>
   1.279 +        </tbody>
   1.280 +      </table>
   1.281 +
   1.282 +      <div class="prod">
   1.283 +        <dfn id="single-transition-property">&lt;single-transition-property&gt;</dfn> = all | &lt;IDENT&gt;
   1.284 +      </div>
   1.285 +
   1.286 +      <p>
   1.287 +        A value of ''none'' means that no property will transition.
   1.288 +        Otherwise, a list of properties to be transitioned, or the
   1.289 +        keyword ''all'' which indicates that all properties are to be
   1.290 +        transitioned, is given.
   1.291 +      </p>
   1.292 +
   1.293 +      <p>
   1.294 +        If one of the identifiers listed is not a recognized property
   1.295 +        name or is not an animatable property, the implementation must
   1.296 +        still start transitions on the animatable properties in the
   1.297 +        list using the duration, delay, and timing function at their
   1.298 +        respective indices in the lists for 'transition-duration',
   1.299 +        'transition-delay', and 'transition-timing-function'.  In other
   1.300 +        words, unrecognized or non-animatable properties must be kept in
   1.301 +        the list to preserve the matching of indices.
   1.302 +      </p>
   1.303 +
   1.304 +      <p>
   1.305 +        The keywords ''none'', ''inherit'', and ''initial'' are not
   1.306 +        permitted as items within a list of more that one identifier;
   1.307 +        any list that uses them is syntactically invalid.
   1.308 +        In other words, the &lt;IDENT&gt; production in
   1.309 +        <span>&lt;single-transition-property&gt;</span> matches any
   1.310 +        identifier other than these three keywords.
   1.311 +      </p>
   1.312 +
   1.313 +      <p>
   1.314 +        For the keyword ''all'', or if one of the identifiers listed is a
   1.315 +        shorthand property, implementations must start transitions for
   1.316 +        any of its longhand sub-properties that are animatable (or, for
   1.317 +        ''all'', all animatable properties), using the duration, delay,
   1.318 +        and timing function at the index corresponding to the shorthand.
   1.319 +      </p>
   1.320 +      <p>
   1.321 +        If a property is specified multiple times in the value of
   1.322 +        'transition-property' (either on its own, via a shorthand that
   1.323 +        contains it, or via the ''all'' value), then the transition that
   1.324 +        starts uses the duration, delay, and timing function at the
   1.325 +        index corresponding to the <em>last</em> item in the value of
   1.326 +        'transition-property' that calls for animating that property.
   1.327 +      </p>
   1.328 +      <p class="note">
   1.329 +        Note:  The ''all'' value and 'all' shorthand
   1.330 +        property work in similar ways, so the
   1.331 +        ''all'' value is just like a shorthand that
   1.332 +        covers all properties.
   1.333 +      </p>
   1.334 +
   1.335 +      <!-- ======================================================================================================= -->
   1.336 +      <h3 id="transition-duration-property"><a id="the-transition-duration-property-">
   1.337 +        The 'transition-duration' Property
   1.338 +      </a></h3>
   1.339 +      <p>
   1.340 +        The 'transition-duration' property defines the length of time that a transition takes.
   1.341 +      </p>
   1.342 +      <table class="propdef">
   1.343 +        <tbody>
   1.344 +          <tr>
   1.345 +            <td>
   1.346 +              <em>Name:</em>
   1.347 +            </td>
   1.348 +            <td>
   1.349 +              <dfn id="transition-duration">transition-duration</dfn>
   1.350 +            </td>
   1.351 +          </tr>
   1.352 +          <tr>
   1.353 +            <td>
   1.354 +              <em>Value:</em>
   1.355 +            </td>
   1.356 +            <td>
   1.357 +              <span>&lt;time&gt;</span> [, <span>&lt;time&gt;</span>]*
   1.358 +            </td>
   1.359 +          </tr>
   1.360 +          <tr>
   1.361 +            <td>
   1.362 +              <em>Initial:</em>
   1.363 +            </td>
   1.364 +            <td>
   1.365 +              0s
   1.366 +            </td>
   1.367 +          </tr>
   1.368 +          <tr>
   1.369 +            <td>
   1.370 +              <em>Applies to:</em>
   1.371 +            </td>
   1.372 +            <td>
   1.373 +              all elements, :before and :after pseudo elements
   1.374 +            </td>
   1.375 +          </tr>
   1.376 +          <tr>
   1.377 +            <td>
   1.378 +              <em>Inherited:</em>
   1.379 +            </td>
   1.380 +            <td>
   1.381 +              no
   1.382 +            </td>
   1.383 +          </tr>
   1.384 +          <tr>
   1.385 +            <td>
   1.386 +              <em>Animatable:</em>
   1.387 +            </td>
   1.388 +            <td>
   1.389 +              no
   1.390 +            </td>
   1.391 +          </tr>
   1.392 +          <tr>
   1.393 +            <td>
   1.394 +              <em>Percentages:</em>
   1.395 +            </td>
   1.396 +            <td>
   1.397 +              N/A
   1.398 +            </td>
   1.399 +          </tr>
   1.400 +          <tr>
   1.401 +            <td>
   1.402 +              <em>Media:</em>
   1.403 +            </td>
   1.404 +            <td>
   1.405 +              interactive
   1.406 +            </td>
   1.407 +          </tr>
   1.408 +          <tr>
   1.409 +            <td>
   1.410 +              <em>Computed value:</em>
   1.411 +            </td>
   1.412 +            <td>
   1.413 +              Same as specified value.
   1.414 +            </td>
   1.415 +          </tr>
   1.416 +          <tr>
   1.417 +            <td>
   1.418 +              <em>Canonical order:</em>
   1.419 +            </td>
   1.420 +            <td>
   1.421 +              <abbr title="follows order of property value definition">per grammar</abbr>
   1.422 +            </td>
   1.423 +          </tr>
   1.424 +        </tbody>
   1.425 +      </table>
   1.426 +      <p>
   1.427 +        This property specifies how long the transition from the old value to the new value should take. By default the value is ''0s'', meaning that the transition is immediate (i.e. there will be no animation). A negative value for 'transition-duration' renders the declaration invalid.
   1.428 +      </p>
   1.429 +
   1.430 +      <!-- =======================================================================================================   
   1.431 +        -->
   1.432 +
   1.433 +      <h3 id="transition-timing-function-property"><a id="transition-timing-function_tag">
   1.434 +        The 'transition-timing-function' Property
   1.435 +      </a></h3>
   1.436 +      <p>
   1.437 +        The 'transition-timing-function' property
   1.438 +        describes how the intermediate values used during a transition will be
   1.439 +        calculated. It allows for a transition to change speed over its
   1.440 +        duration. These effects are commonly called <em>easing</em> functions.
   1.441 +        In either case, a mathematical function that provides a smooth curve is
   1.442 +        used.
   1.443 +      </p>
   1.444 +      <p>
   1.445 +        Timing functions are either defined as a stepping function or 
   1.446 +        a <a
   1.447 +        href="http://en.wikipedia.org/wiki/B%C3%A9zier_curve#Cubic_B.C3.A9zier_curves">cubic
   1.448 +        B&eacute;zier curve</a>. 
   1.449 +        The timing function takes as its input
   1.450 +        the current elapsed percentage of the transition duration
   1.451 +        and outputs the percentage of the way the transition is
   1.452 +        from its start value to its end value.
   1.453 +        How this output is used is defined by
   1.454 +        the <a href="#animatable-types">interpolation rules</a>
   1.455 +        for the value type.
   1.456 +      </p>
   1.457 +      <p>
   1.458 +        A <a href="http://en.wikipedia.org/wiki/Step_function">stepping</a>
   1.459 +        function is defined by a number that divides the domain of operation
   1.460 +        into equally sized intervals. Each subsequent interval is a equal step
   1.461 +        closer to the goal state. The function also specifies whether the
   1.462 +        change in output percentage happens at the start or end of the
   1.463 +        interval (in other words, if 0% on the input percentage is the point
   1.464 +        of initial change).
   1.465 +      </p>
   1.466 +      <div class="figure">
   1.467 +        <img src="step.png" alt="The step timing function splits
   1.468 +          the function domain into a number of disjoint straight line
   1.469 +          segments. steps(1, start) is a function whose
   1.470 +          output value is 1 for all input values. steps(1, end) is a function whose
   1.471 +          output value is 0 for all input values less than 1, and output
   1.472 +          is 1 for the input value of 1. steps(3, start) is a function that
   1.473 +          divides the input domain into three segments, each 1/3 in length,
   1.474 +          and 1/3 above the previous segment, with the first segment starting
   1.475 +          at 1/3. steps(3, end) is a function that
   1.476 +          divides the input domain into three segments, each 1/3 in length,
   1.477 +          and 1/3 above the previous segment, with the first segment starting
   1.478 +          at 0.">
   1.479 +      </div>
   1.480 +      <p class="caption">
   1.481 +        Step timing functions
   1.482 +      </p>
   1.483 +      <p>
   1.484 +        A <a
   1.485 +        href="http://en.wikipedia.org/wiki/B%C3%A9zier_curve#Cubic_B.C3.A9zier_curves">cubic
   1.486 +        B&eacute;zier curve</a> is defined by four control points, P<sub>0</sub>
   1.487 +        through P<sub>3</sub> (see Figure 1). P<sub>0</sub> and P<sub>3</sub>
   1.488 +        are always set to (0,0) and (1,1). The 'transition-timing-function' property is used
   1.489 +        to specify the values for points P<sub>1</sub> and P<sub>2</sub>. These
   1.490 +        can be set to preset values using the keywords listed below, or can be
   1.491 +        set to specific values using the ''cubic-bezier'' function.
   1.492 +        In the ''cubic-bezier'' function, P<sub>1</sub> and
   1.493 +        P<sub>2</sub> are each specified by both an X and Y value.
   1.494 +      </p>
   1.495 +      <div class="figure">
   1.496 +        <img src="TimingFunction.png" alt="The B&eacute;zier timing function is a
   1.497 +          smooth curve from point P0 = (0,0) to point P3 = (1,1). The
   1.498 +          length and orientation of the line segment P0-P1 determines
   1.499 +          the tangent and the curvature of the curve at P0 and the
   1.500 +          line segment P2-P3 does the same at P3.">
   1.501 +      </div>
   1.502 +      <p class="caption">
   1.503 +        B&eacute;zier Timing Function Control Points
   1.504 +      </p>
   1.505 +      <table class="propdef">
   1.506 +        <tbody>
   1.507 +          <tr>
   1.508 +            <td>
   1.509 +              <em>Name:</em>
   1.510 +            </td>
   1.511 +            <td>
   1.512 +              <dfn id="transition-timing-function">transition-timing-function</dfn>
   1.513 +            </td>
   1.514 +          </tr>
   1.515 +          <tr>
   1.516 +            <td>
   1.517 +              <em>Value:</em>
   1.518 +            </td>
   1.519 +            <td>
   1.520 +              <span>&lt;single-transition-timing-function&gt;</span> [ ',' <span>&lt;single-transition-timing-function&gt;</span> ]*
   1.521 +            </td>
   1.522 +          </tr>
   1.523 +          <tr>
   1.524 +            <td>
   1.525 +              <em>Initial:</em>
   1.526 +            </td>
   1.527 +            <td>
   1.528 +              ease
   1.529 +            </td>
   1.530 +          </tr>
   1.531 +          <tr>
   1.532 +            <td>
   1.533 +              <em>Applies to:</em>
   1.534 +            </td>
   1.535 +            <td>
   1.536 +              all elements, :before and :after pseudo elements
   1.537 +            </td>
   1.538 +          </tr>
   1.539 +          <tr>
   1.540 +            <td>
   1.541 +              <em>Inherited:</em>
   1.542 +            </td>
   1.543 +            <td>
   1.544 +              no
   1.545 +            </td>
   1.546 +          </tr>
   1.547 +          <tr>
   1.548 +            <td>
   1.549 +              <em>Animatable:</em>
   1.550 +            </td>
   1.551 +            <td>
   1.552 +              no
   1.553 +            </td>
   1.554 +          </tr>
   1.555 +          <tr>
   1.556 +            <td>
   1.557 +              <em>Percentages:</em>
   1.558 +            </td>
   1.559 +            <td>
   1.560 +              N/A
   1.561 +            </td>
   1.562 +          </tr>
   1.563 +          <tr>
   1.564 +            <td>
   1.565 +              <em>Media:</em>
   1.566 +            </td>
   1.567 +            <td>
   1.568 +              interactive
   1.569 +            </td>
   1.570 +          </tr>
   1.571 +          <tr>
   1.572 +            <td>
   1.573 +              <em>Computed value:</em>
   1.574 +            </td>
   1.575 +            <td>
   1.576 +              Same as specified value.
   1.577 +            </td>
   1.578 +          </tr>
   1.579 +          <tr>
   1.580 +            <td>
   1.581 +              <em>Canonical order:</em>
   1.582 +            </td>
   1.583 +            <td>
   1.584 +              <abbr title="follows order of property value definition">per grammar</abbr>
   1.585 +            </td>
   1.586 +          </tr>
   1.587 +        </tbody>
   1.588 +      </table>
   1.589 +      <div class="prod">
   1.590 +        <dfn id="single-transition-timing-function">&lt;single-transition-timing-function&gt;</dfn> = ease | linear | ease-in | ease-out | ease-in-out | step-start | step-end | steps(&lt;integer&gt;[, [ start | end ] ]?) | cubic-bezier(&lt;number&gt;, &lt;number&gt;, &lt;number&gt;, &lt;number&gt;)
   1.591 +      </div>
   1.592 +      <p>
   1.593 +        The timing functions have the following definitions.
   1.594 +      </p>
   1.595 +      <dl>
   1.596 +        <dt>
   1.597 +          ease
   1.598 +        </dt>
   1.599 +        <dd>
   1.600 +          The ease function is equivalent to cubic-bezier(0.25, 0.1, 0.25, 1).
   1.601 +        </dd>
   1.602 +        <dt>
   1.603 +          linear
   1.604 +        </dt>
   1.605 +        <dd>
   1.606 +          The linear function is equivalent to cubic-bezier(0, 0, 1, 1).
   1.607 +        </dd>
   1.608 +        <dt>
   1.609 +          ease-in
   1.610 +        </dt>
   1.611 +        <dd>
   1.612 +          The ease-in function is equivalent to cubic-bezier(0.42, 0, 1, 1).
   1.613 +        </dd>
   1.614 +        <dt>
   1.615 +          ease-out
   1.616 +        </dt>
   1.617 +        <dd>
   1.618 +          The ease-out function is equivalent to cubic-bezier(0, 0, 0.58, 1).
   1.619 +        </dd>
   1.620 +        <dt>
   1.621 +          ease-in-out
   1.622 +        </dt>
   1.623 +        <dd>
   1.624 +          The ease-in-out function is equivalent to cubic-bezier(0.42, 0, 0.58, 1)
   1.625 +        </dd>
   1.626 +        <dt>
   1.627 +          step-start
   1.628 +        </dt>
   1.629 +        <dd>
   1.630 +          The step-start function is equivalent to steps(1, start).
   1.631 +        </dd>
   1.632 +        <dt>
   1.633 +          step-end
   1.634 +        </dt>
   1.635 +        <dd>
   1.636 +          The step-end function is equivalent to steps(1, end).
   1.637 +        </dd>
   1.638 +        <dt>
   1.639 +          steps(&lt;integer&gt;[, [ start | end ] ]?)
   1.640 +        </dt>
   1.641 +        <dd>
   1.642 +          Specifies a stepping function, described above, taking two
   1.643 +          parameters. The first parameter specifies the number of intervals
   1.644 +          in the function. It must be a positive integer (greater than 0).
   1.645 +          The second parameter, which is optional, is
   1.646 +          either the value ''start'' or ''end'', and specifies the point
   1.647 +          at which the change of values occur within the interval.
   1.648 +          If the second parameter is omitted, it is given the value 'end'.
   1.649 +        </dd>
   1.650 +        <dt>
   1.651 +          cubic-bezier(&lt;number&gt;, &lt;number&gt;, &lt;number&gt;, &lt;number&gt;)
   1.652 +        </dt>
   1.653 +        <dd>
   1.654 +          Specifies a <a
   1.655 +          href="http://en.wikipedia.org/wiki/B%C3%A9zier_curve">cubic-bezier
   1.656 +          curve</a>. The four values specify points P<sub>1</sub> and
   1.657 +          P<sub>2</sub> of the curve as (x1, y1, x2, y2). Both x values must be
   1.658 +          in the range [0, 1] or the definition is invalid. The y values can
   1.659 +          exceed this range.
   1.660 +        </dd>
   1.661 +      </dl><!-- ======================================================================================================= -->
   1.662 +      <h3 id="transition-delay-property"><a id="the-transition-delay-property-">
   1.663 +        The 'transition-delay' Property
   1.664 +      </a></h3>
   1.665 +      <p>
   1.666 +        The 'transition-delay' property defines when the transition will start. It allows a transition to begin execution some some period of time from when it is applied. A 'transition-delay' value of ''0s'' means the transition will execute as soon as the property is changed. Otherwise, the value specifies an offset from the moment the property is changed, and the transition will delay execution by that offset.
   1.667 +      </p>
   1.668 +      <p>
   1.669 +        If the value for 'transition-delay' is a negative time offset then the transition will execute the moment the property is changed, but will appear to have begun execution at the specified offset. That is, the transition will appear to begin part-way through its play cycle. In the case where a transition has implied starting values and a negative 'transition-delay', the starting values are taken from the moment the property is changed.
   1.670 +      </p>
   1.671 +      <table class="propdef">
   1.672 +        <tbody>
   1.673 +          <tr>
   1.674 +            <td>
   1.675 +              <em>Name:</em>
   1.676 +            </td>
   1.677 +            <td>
   1.678 +              <dfn id="transition-delay">transition-delay</dfn>
   1.679 +            </td>
   1.680 +          </tr>
   1.681 +          <tr>
   1.682 +            <td>
   1.683 +              <em>Value:</em>
   1.684 +            </td>
   1.685 +            <td>
   1.686 +              <span>&lt;time&gt;</span> [, <span>&lt;time&gt;</span>]*
   1.687 +            </td>
   1.688 +          </tr>
   1.689 +          <tr>
   1.690 +            <td>
   1.691 +              <em>Initial:</em>
   1.692 +            </td>
   1.693 +            <td>
   1.694 +              0s
   1.695 +            </td>
   1.696 +          </tr>
   1.697 +          <tr>
   1.698 +            <td>
   1.699 +              <em>Applies to:</em>
   1.700 +            </td>
   1.701 +            <td>
   1.702 +              all elements, :before and :after pseudo elements
   1.703 +            </td>
   1.704 +          </tr>
   1.705 +          <tr>
   1.706 +            <td>
   1.707 +              <em>Inherited:</em>
   1.708 +            </td>
   1.709 +            <td>
   1.710 +              no
   1.711 +            </td>
   1.712 +          </tr>
   1.713 +          <tr>
   1.714 +            <td>
   1.715 +              <em>Animatable:</em>
   1.716 +            </td>
   1.717 +            <td>
   1.718 +              no
   1.719 +            </td>
   1.720 +          </tr>
   1.721 +          <tr>
   1.722 +            <td>
   1.723 +              <em>Percentages:</em>
   1.724 +            </td>
   1.725 +            <td>
   1.726 +              N/A
   1.727 +            </td>
   1.728 +          </tr>
   1.729 +          <tr>
   1.730 +            <td>
   1.731 +              <em>Media:</em>
   1.732 +            </td>
   1.733 +            <td>
   1.734 +              interactive
   1.735 +            </td>
   1.736 +          </tr>
   1.737 +          <tr>
   1.738 +            <td>
   1.739 +              <em>Computed value:</em>
   1.740 +            </td>
   1.741 +            <td>
   1.742 +              Same as specified value.
   1.743 +            </td>
   1.744 +          </tr>
   1.745 +          <tr>
   1.746 +            <td>
   1.747 +              <em>Canonical order:</em>
   1.748 +            </td>
   1.749 +            <td>
   1.750 +              <abbr title="follows order of property value definition">per grammar</abbr>
   1.751 +            </td>
   1.752 +          </tr>
   1.753 +        </tbody>
   1.754 +      </table><!-- ======================================================================================================= -->
   1.755 +      <h3 id="transition-shorthand-property"><a id="the-transition-shorthand-property-">
   1.756 +        The 'transition' Shorthand Property
   1.757 +      </a></h3>
   1.758 +      <p>
   1.759 +        The 'transition' shorthand property combines the four properties described above into a single property.
   1.760 +      </p>
   1.761 +      <table class="propdef">
   1.762 +        <tbody>
   1.763 +          <tr>
   1.764 +            <td>
   1.765 +              <em>Name:</em>
   1.766 +            </td>
   1.767 +            <td>
   1.768 +              <dfn id="transition">transition</dfn>
   1.769 +            </td>
   1.770 +          </tr>
   1.771 +          <tr>
   1.772 +            <td>
   1.773 +              <em>Value:</em>
   1.774 +            </td>
   1.775 +            <td>
   1.776 +              <span>&lt;single-transition&gt;</span> [ ',' <span>&lt;single-transition&gt;</span> ]*
   1.777 +            </td>
   1.778 +          </tr>
   1.779 +          <tr>
   1.780 +            <td>
   1.781 +              <em>Initial:</em>
   1.782 +            </td>
   1.783 +            <td>
   1.784 +              see individual properties
   1.785 +            </td>
   1.786 +          </tr>
   1.787 +          <tr>
   1.788 +            <td>
   1.789 +              <em>Applies to:</em>
   1.790 +            </td>
   1.791 +            <td>
   1.792 +              all elements, :before and :after pseudo elements
   1.793 +            </td>
   1.794 +          </tr>
   1.795 +          <tr>
   1.796 +            <td>
   1.797 +              <em>Inherited:</em>
   1.798 +            </td>
   1.799 +            <td>
   1.800 +              no
   1.801 +            </td>
   1.802 +          </tr>
   1.803 +          <tr>
   1.804 +            <td>
   1.805 +              <em>Animatable:</em>
   1.806 +            </td>
   1.807 +            <td>
   1.808 +              no
   1.809 +            </td>
   1.810 +          </tr>
   1.811 +          <tr>
   1.812 +            <td>
   1.813 +              <em>Percentages:</em>
   1.814 +            </td>
   1.815 +            <td>
   1.816 +              N/A
   1.817 +            </td>
   1.818 +          </tr>
   1.819 +          <tr>
   1.820 +            <td>
   1.821 +              <em>Media:</em>
   1.822 +            </td>
   1.823 +            <td>
   1.824 +              interactive
   1.825 +            </td>
   1.826 +          </tr>
   1.827 +          <tr>
   1.828 +            <td>
   1.829 +              <em>Computed value:</em>
   1.830 +            </td>
   1.831 +            <td>
   1.832 +              see individual properties
   1.833 +            </td>
   1.834 +          </tr>
   1.835 +          <tr>
   1.836 +            <td>
   1.837 +              <em>Canonical order:</em>
   1.838 +            </td>
   1.839 +            <td>
   1.840 +              <abbr title="follows order of property value definition">per grammar</abbr>
   1.841 +            </td>
   1.842 +          </tr>
   1.843 +        </tbody>
   1.844 +      </table>
   1.845 +
   1.846 +      <div class="prod">
   1.847 +        <dfn id="single-transition">&lt;single-transition&gt;</dfn> = [ none | <span>&lt;single-transition-property&gt;</span> ] || <span>&lt;time&gt;</span> || <span>&lt;single-transition-timing-function&gt;</span> || <span>&lt;time&gt;</span>
   1.848 +      </div>
   1.849 +
   1.850 +      <p>
   1.851 +        Note that order is important within the items in this property:
   1.852 +        the first value that can be parsed as a time is assigned to the
   1.853 +        transition-duration,
   1.854 +        and the second value that can be parsed as a time is assigned to
   1.855 +        transition-delay.
   1.856 +      </p>
   1.857 +
   1.858 +      <p>
   1.859 +        If there is more than one <span>&lt;single-transition&gt;</span> in the shorthand,
   1.860 +        and any of the transitions has
   1.861 +        ''none'' as the <span>&lt;single-transition-property&gt;</span>,
   1.862 +        then the declaration is invalid.
   1.863 +      </p>
   1.864 +
   1.865 +      <h2 id="starting">
   1.866 +        Starting of transitions
   1.867 +      </h2>
   1.868 +
   1.869 +      <p>
   1.870 +        When the computed value of an animatable property changes,
   1.871 +        implementations must decide what transitions to start based on
   1.872 +        the values of the 'transition-property', 'transition-duration',
   1.873 +        'transition-timing-function', and 'transition-delay' properties
   1.874 +        at the time the animatable property would first have its new
   1.875 +        computed value.
   1.876 +        This means that when one of these 'transition-*' properties
   1.877 +        changes at the same time as
   1.878 +        a property whose change might transition,
   1.879 +        it is the <em>new</em> values of the 'transition-*' properties
   1.880 +        that control the transition.
   1.881 +      </p>
   1.882 +      <div class="example" id="manual-reversing-example">
   1.883 +        <p style="display:none">
   1.884 +          Example(s):
   1.885 +        </p>
   1.886 +        <p>This provides a way for authors to specify different values
   1.887 +        of the 'transition-*' properties for the &ldquo;forward&rdquo;
   1.888 +        and &ldquo;reverse&rdquo; transitions (but see <a
   1.889 +        href="#reversing">below</a> for special reversing behavior when
   1.890 +        an <em>incomplete</em> transition is interrupted).  Authors can
   1.891 +        specify the value of 'transition-duration',
   1.892 +        'transition-timing-function', or 'transition-delay' in the same
   1.893 +        rule where they specify the value that triggers the transition,
   1.894 +        or can change these properties at the same time as they change
   1.895 +        the property that triggers the transition.  Since it's the new
   1.896 +        values of these 'transition-*' properties that affect the
   1.897 +        transition, these values will be used for the transitions
   1.898 +        <em>to</em> the associated transitioning values.  For example:
   1.899 +         </p>
   1.900 +        <pre>li {
   1.901 +  transition: background-color linear 1s;
   1.902 +  background: blue;
   1.903 +}
   1.904 +li:hover {
   1.905 +  background-color: green;
   1.906 +  transition-duration: 2s; /* applies to the transition *to* the :hover state */
   1.907 +}</pre>
   1.908 +        <p>
   1.909 +          When a list item with these style rules enters the :hover
   1.910 +          state, the computed 'transition-duration' at the time that
   1.911 +          'background-color' would have its new value (''green'') is ''2s'',
   1.912 +          so the transition from 'blue' to 'green' takes 2 seconds.
   1.913 +          However, when the list item leaves the :hover state, the
   1.914 +          transition from ''green'' to ''blue'' takes 1 second.
   1.915 +        </p>
   1.916 +      </div>
   1.917 +
   1.918 +      <p>
   1.919 +        When the computed value of a property changes, implementations
   1.920 +        must start transitions based on the relevant item (see <a
   1.921 +        href="#transition-property">the definition of
   1.922 +        'transition-property'</a>) in the computed value of
   1.923 +        'transition-property'.
   1.924 +        Corresponding to this item there are
   1.925 +        computed values of 'transition-duration' and 'transition-delay'
   1.926 +        (see <a href="#list-matching">the rules on matching lists</a>).
   1.927 +        Define the <dfn>combined duration</dfn> of the transition
   1.928 +        as the sum of max('transition-duration', ''0s'') and 'transition-delay'.
   1.929 +        When the combined duration is greater than ''0s'',
   1.930 +        then a transition starts based on the values of
   1.931 +        'transition-duration', 'transition-delay',
   1.932 +        and 'transition-timing-function';
   1.933 +        in other cases transitions do not occur.
   1.934 +      </p>
   1.935 +
   1.936 +      <p>
   1.937 +        Since this specification does not define
   1.938 +        when computed values change, and thus what changes to
   1.939 +        computed values are considered simultaneous,
   1.940 +        authors should be aware that changing any of the transition
   1.941 +        properties a small amount of time after making a change that
   1.942 +        might transition can result in behavior that varies between
   1.943 +        implementations, since the changes might be considered
   1.944 +        simultaneous in some implementations but not others.
   1.945 +      </p>
   1.946 +
   1.947 +      <p>
   1.948 +        Once the transition of a property has started, it must continue
   1.949 +        running based on the original timing function, duration, and
   1.950 +        delay, even if the 'transition-timing-function',
   1.951 +        'transition-duration', or 'transition-delay' property changes
   1.952 +        before the transition is complete.  However, if the
   1.953 +        'transition-property' property changes such that the transition
   1.954 +        would not have started, the transition must stop (and the
   1.955 +        property must immediately change to its final value).
   1.956 +      </p>
   1.957 +
   1.958 +      <p>
   1.959 +        Implementations must not start a transition when the computed
   1.960 +        value of a property changes as a result of declarative animation
   1.961 +        (as opposed to scripted animation).
   1.962 +      </p>
   1.963 +
   1.964 +      <p>
   1.965 +        Implementations also must not start a transition when the
   1.966 +        computed value changes because it is inherited (directly or
   1.967 +        indirectly) from another element that is transitioning the same
   1.968 +        property.
   1.969 +      </p>
   1.970 +
   1.971 +      <h2 id="reversing">
   1.972 +        Automatically reversing interrupted transitions
   1.973 +      </h2>
   1.974 +      <p>
   1.975 +        A common type of transition effect is when a running transition is
   1.976 +        interrupted and the property is reset to its original value. An
   1.977 +        example is a hover effect on an element, where the pointer enters and
   1.978 +        exits the element before the effect has completed. If the outgoing and
   1.979 +        incoming transitions are executed using their specified durations and
   1.980 +        timing functions, the resulting effect can be distractingly
   1.981 +        asymmetric. Instead, the expected behavior is that the new transition
   1.982 +        should be the reverse of what has already executed.
   1.983 +      </p>
   1.984 +      
   1.985 +      <p>
   1.986 +        If a running transition with duration T, executing so far for duration TE, 
   1.987 +        from state A, to state B, is interrupted by
   1.988 +        a property change that would start a new transition back to state A, and
   1.989 +        all the transition attributes are the same (duration, delay and timing function),
   1.990 +        then the new transition must reverse the effect. The new transition must:
   1.991 +      </p>
   1.992 +      
   1.993 +      <ol>
   1.994 +        <li>
   1.995 +          Use the B and A states as its "from" and "to" states respectively. It
   1.996 +          does not use the current value as its from state, due to the rules below.
   1.997 +        </li>
   1.998 +        <li>
   1.999 +          Execute with the same duration T, but starting as if the transition had
  1.1000 +          already begun, without any transition delay, at the moment which would
  1.1001 +          cause the new transition to finish in TE from the moment of interruption. In other
  1.1002 +          words, the new transition will execute as if it started T-TE in the past.
  1.1003 +        </li>
  1.1004 +        <li>
  1.1005 +          Use a timing function that is the portion of the curve traversed up
  1.1006 +          to the moment of interruption, followed in the opposite direction (towards
  1.1007 +          the starting point). This will make the transition appear as if it 
  1.1008 +          is playing backwards.
  1.1009 +        </li>
  1.1010 +        <li>
  1.1011 +          Ignore any transition delay.
  1.1012 +        </li>
  1.1013 +      </ol>
  1.1014 +
  1.1015 +      <p>
  1.1016 +        For example, suppose there is a transition with a duration of two
  1.1017 +        seconds. If this transition is interrupted after 0.5 seconds and the
  1.1018 +        property value assigned to the original value, then the new transition
  1.1019 +        effect will be the reverse of the original, as if it had begun
  1.1020 +        1.5 seconds in the past.
  1.1021 +      </p>
  1.1022 +
  1.1023 +      <p>
  1.1024 +        Note that by using the defined from and to states for the reversing
  1.1025 +        transition, it is also possible that it may reverse again, if
  1.1026 +        interrupted; for example, if the transition reversing to state A was
  1.1027 +        again interrupted by a property change to state B.
  1.1028 +      </p>
  1.1029 +
  1.1030 +      <p class="issue">Issue:
  1.1031 +        This introduces the concept of reversing a timing function,
  1.1032 +        which the spec has otherwise resisted doing, and also introduces
  1.1033 +        a discontinuity between transitions that have
  1.1034 +        almost completed (which get automatically reversed and thus have
  1.1035 +        their timing function reversed) and transitions that have fully
  1.1036 +        completed (where the reversal doesn't lead to the timing
  1.1037 +        function being reversed).  An alternative proposal that avoids
  1.1038 +        this is to follow the normal timing function algorithm, except
  1.1039 +        multiply the duration (and also shorten any negative delay) by
  1.1040 +        the (output) value of the transition timing function of the
  1.1041 +        incomplete transition at the time it was interrupted, and, to
  1.1042 +        account for multiple reverses in sequence, to divide by the
  1.1043 +        shortening applied to the transition being interrupted.  For
  1.1044 +        more details see this thread:
  1.1045 +        <a href="http://lists.w3.org/Archives/Public/www-style/2009Nov/thread.html#msg302">November 2009 part</a>,
  1.1046 +        <a href="http://lists.w3.org/Archives/Public/www-style/2009Dec/thread.html#msg319">December 2009 part</a>,
  1.1047 +        <a href="http://lists.w3.org/Archives/Public/www-style/2010Jan/thread.html#msg136">January 2010 part</a>.
  1.1048 +      </p>
  1.1049 +
  1.1050 +      <h2 id="transition-events"><a id="transition-events-">
  1.1051 +        Transition Events
  1.1052 +      </a></h2>
  1.1053 +      <p>
  1.1054 +        The completion of a CSS Transition generates a corresponding <a href="http://www.w3.org/TR/DOM-Level-2-Events/events.html">DOM Event</a>.
  1.1055 +        An event is fired for each property that undergoes a transition.
  1.1056 +        This allows a content developer to perform actions that synchronize
  1.1057 +        with the completion of a transition.
  1.1058 +      </p>
  1.1059 +      <p>
  1.1060 +        Each event provides the name of the property the transition is
  1.1061 +        associated with as well as the duration of the transition.
  1.1062 +      </p>
  1.1063 +      <dl>
  1.1064 +        <dt>
  1.1065 +          <b>Interface <dfn id="Events-TransitionEvent">TransitionEvent</dfn></b>
  1.1066 +        </dt>
  1.1067 +        <dd>
  1.1068 +          <p>
  1.1069 +            The <code>TransitionEvent</code> interface provides specific contextual information associated with transitions.
  1.1070 +          </p>
  1.1071 +          <dl>
  1.1072 +            <dt>
  1.1073 +              <b>IDL Definition</b>
  1.1074 +            </dt>
  1.1075 +            <dd>
  1.1076 +              <div class='idl-code'>
  1.1077 +                <pre>
  1.1078 +  <span id="TransitionEvent">[Constructor(DOMString <var title="">type</var>, optional <i>TransitionEventInit</i> <var title="">transitionEventInitDict</var>)]
  1.1079 +  interface TransitionEvent</span> : Event {
  1.1080 +    readonly attribute DOMString          <a href="#Events-TransitionEvent-propertyName">propertyName</a>;
  1.1081 +    readonly attribute float              <a href="#Events-TransitionEvent-elapsedTime">elapsedTime</a>;
  1.1082 +    readonly attribute DOMString          <a href="#Events-TransitionEvent-pseudoElement">pseudoElement</a>;
  1.1083 +  };
  1.1084 +
  1.1085 +  dictionary <dfn id="TransitionEventInit">TransitionEventInit</dfn> : <a class="external" href="http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#eventinit">EventInit</a> {
  1.1086 +    DOMString <a href="#Events-TransitionEvent-propertyName">propertyName</a>;
  1.1087 +    float <a href="#Events-TransitionEvent-elapsedTime">elapsedTime</a>;
  1.1088 +    DOMString <a href="#Events-TransitionEvent-pseudoElement">pseudoElement</a>;
  1.1089 +  }
  1.1090 +  </pre>
  1.1091 +              </div>
  1.1092 +            </dd>
  1.1093 +            <dt>
  1.1094 +              <b>Attributes</b>
  1.1095 +            </dt>
  1.1096 +            <dd>
  1.1097 +              <dl>
  1.1098 +                <dt>
  1.1099 +                  <code class='attribute-name'><dfn title="TransitionEvent::propertyName" id="Events-TransitionEvent-propertyName">propertyName</dfn></code> of type <code>DOMString</code>, readonly
  1.1100 +                </dt>
  1.1101 +                <dd>
  1.1102 +                  The name of the CSS property associated with the transition.
  1.1103 +                </dd>
  1.1104 +              </dl>
  1.1105 +              <dl>
  1.1106 +                <dt>
  1.1107 +                  <code class='attribute-name'><dfn title="TransitionEvent::elapsedTime" id="Events-TransitionEvent-elapsedTime">elapsedTime</dfn></code> of type <code>float</code>, readonly
  1.1108 +                </dt>
  1.1109 +                <dd>
  1.1110 +                  The amount of time the transition has been running, in seconds, when this event fired. Note that this value is not affected by the value of <code class="property">transition-delay</code>.
  1.1111 +                </dd>
  1.1112 +              </dl>
  1.1113 +              <dl>
  1.1114 +                <dt>
  1.1115 +                  <code class='attribute-name'><dfn title="TransitionEvent::pseudoElement" id="Events-TransitionEvent-pseudoElement">pseudoElement</dfn></code> of type <code>DOMString</code>, readonly
  1.1116 +                </dt>
  1.1117 +                <dd>
  1.1118 +                  The name (beginning with two colons) of the CSS
  1.1119 +                  pseudo-element on which the transition occured (in
  1.1120 +                  which case the target of the event is that
  1.1121 +                  pseudo-element's corresponding element), or the empty
  1.1122 +                  string if the transition occurred on an element (which
  1.1123 +                  means the target of the event is that element).
  1.1124 +                </dd>
  1.1125 +              </dl>
  1.1126 +            </dd>
  1.1127 +          </dl>
  1.1128 +          <p>
  1.1129 +            <code id="TransitionEvent-constructor">TransitionEvent(type, transitionEventInitDict)</code>
  1.1130 +            is an <a class="external" href="http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#concept-event-constructor">event constructor</a>.
  1.1131 +          </p>
  1.1132 +        </dd>
  1.1133 +      </dl>
  1.1134 +      <p>
  1.1135 +        There is one type of transition event available.
  1.1136 +      </p>
  1.1137 +      <dl>
  1.1138 +        <dt>
  1.1139 +          <b><dfn>transitionend</dfn></b>
  1.1140 +        </dt>
  1.1141 +        <dd>
  1.1142 +          The <code>transitionend</code> event occurs at the completion of the transition. In the
  1.1143 +          case where a transition is removed before completion, such as if the
  1.1144 +          transition-property is removed, then the event will not fire.
  1.1145 +          <ul>
  1.1146 +            <li>Bubbles: Yes
  1.1147 +            </li>
  1.1148 +            <li>Cancelable: Yes
  1.1149 +            </li>
  1.1150 +            <li>Context Info: propertyName, elapsedTime, pseudoElement
  1.1151 +            </li>
  1.1152 +          </ul>
  1.1153 +        </dd>
  1.1154 +      </dl>
  1.1155 +
  1.1156 +      <h2 id="animatable-types"><a id="animation-of-property-types-">
  1.1157 +        Animation of property types
  1.1158 +      </a></h2>
  1.1159 +
  1.1160 +      <p>
  1.1161 +        When interpolating between two values,
  1.1162 +        <i>V</i><sub>start</sub> and <i>V</i><sub>end</sub>,
  1.1163 +        interpolation is done using the output <i>p</i> of the timing function,
  1.1164 +        which gives the portion of the value space
  1.1165 +        that the interpolation has crossed.
  1.1166 +        Thus the result of the interpolation is
  1.1167 +        <i>V</i><sub>res</sub> =
  1.1168 +          (1 - <i>p</i>) &sdot; <i>V</i><sub>start</sub> +
  1.1169 +          <i>p</i> &sdot; <i>V</i><sub>end</sub>.
  1.1170 +      </p>
  1.1171 +
  1.1172 +      <p>
  1.1173 +        However, if this value (<i>V</i><sub>res</sub>)
  1.1174 +        is outside the allowed range of values for the property,
  1.1175 +        then it is clamped to that range.
  1.1176 +        This can occur if <i>p</i> is outside of the range 0 to 1,
  1.1177 +        which can occur if a timing function is specified
  1.1178 +        with a <i>y1</i> or <i>y2</i> that is outside the range 0 to 1.
  1.1179 +      </p>
  1.1180 +
  1.1181 +      <p>
  1.1182 +        The following describes how each property type undergoes transition or
  1.1183 +        animation.
  1.1184 +      </p>
  1.1185 +
  1.1186 +      <ul>
  1.1187 +        <li id="animtype-color">
  1.1188 +          <strong>color</strong>: interpolated via red, green, blue and alpha
  1.1189 +          components (treating each as a number, see below).
  1.1190 +          The interpolation is done between premultiplied colors
  1.1191 +          (that is, colors for which the red, green, and blue components
  1.1192 +          specified have been multiplied by the alpha).
  1.1193 +        </li>
  1.1194 +        <li id="animtype-length">
  1.1195 +          <strong>length</strong>: interpolated as real numbers.
  1.1196 +        </li>
  1.1197 +        <li id="animtype-percentage">
  1.1198 +          <strong>percentage</strong>: interpolated as real numbers.
  1.1199 +        </li>
  1.1200 +        <li id="animtype-lpcalc">
  1.1201 +          <strong>length, percentage, or calc</strong>: when both values
  1.1202 +          are lengths, interpolated as lengths; when both values are
  1.1203 +          percentages, interpolated as percentages; otherwise, both
  1.1204 +          values are converted into a ''calc()'' function that is the
  1.1205 +          sum of a length and a percentage (each possibly zero), and
  1.1206 +          these ''calc()'' functions have each half interpolated as real
  1.1207 +          numbers.
  1.1208 +        </li>
  1.1209 +        <li id="animtype-integer">
  1.1210 +          <strong>integer</strong>: interpolated via discrete steps (whole
  1.1211 +          numbers). The interpolation happens in real number space and is
  1.1212 +          converted to an integer by rounding to the nearest integer, with
  1.1213 +          values halfway between a pair of integers rounded towards
  1.1214 +          positive infinity.
  1.1215 +        </li>
  1.1216 +        <li id="animtype-font-weight">
  1.1217 +          <strong>font weight</strong>: interpolated via discrete steps
  1.1218 +          (multiples of 100). The interpolation happens in real number
  1.1219 +          space and is converted to an integer by rounding to the
  1.1220 +          nearest multiple of 100, with values halfway between multiples
  1.1221 +          of 100 rounded towards positive infinity.
  1.1222 +        </li>
  1.1223 +        <li id="animtype-number">
  1.1224 +          <strong>number</strong>: interpolated as real (floating point)
  1.1225 +          numbers.
  1.1226 +        </li>
  1.1227 +        <li id="animtype-rect">
  1.1228 +          <strong>rectangle</strong>: interpolated via the x, y,
  1.1229 +          width and height components (treating each as a number).
  1.1230 +        </li>
  1.1231 +        <li id="animtype-visibility">
  1.1232 +          <strong>visibility</strong>: if one of the values is
  1.1233 +          ''visible'', interpolated as a discrete step where values of the
  1.1234 +          timing function between 0 and 1 map to ''visible'' and other
  1.1235 +          values of the timing function (which occur only at the
  1.1236 +          start/end of the transition or as a result of ''cubic-bezier()''
  1.1237 +          functions with Y values outside of [0, 1]) map to the closer
  1.1238 +          endpoint; if neither value is ''visible'' then not interpolable.
  1.1239 +        </li>
  1.1240 +        <li id="animtype-shadow-list">
  1.1241 +          <strong>shadow list</strong>: Each shadow in the list is
  1.1242 +          interpolated via the
  1.1243 +          color (as <a href="#animtype-color">color</a>) component,
  1.1244 +          and x, y, blur, and (when appropriate) spread
  1.1245 +          (as <a href="#animtype-length">length</a>) components.
  1.1246 +          For each shadow, if one input shadow is ''inset'' and the other
  1.1247 +          is not, then the result for that shadow matches the inputs;
  1.1248 +          otherwise the entire list is not interpolable.
  1.1249 +          If the lists of shadows have different lengths,
  1.1250 +          then the shorter list is padded at the end
  1.1251 +          with shadows whose color is ''transparent'',
  1.1252 +          all lengths are ''0'',
  1.1253 +          and whose ''inset'' (or not) matches the longer list.
  1.1254 +        </li>
  1.1255 +        <li id="animtype-gradient">
  1.1256 +          <strong>gradient</strong>: interpolated via the
  1.1257 +          positions and colors of each stop. They must have the same type
  1.1258 +          (radial or linear) and same number of stops in order to be animated.
  1.1259 +          <span class="note">Note: [[CSS3-IMAGES]] may extend this
  1.1260 +          definition.</span>
  1.1261 +        </li>
  1.1262 +        <li id="animtype-paintserver">
  1.1263 +          <strong>paint server</strong> (SVG): interpolation is only supported
  1.1264 +          between: gradient to gradient and color to color. They then
  1.1265 +          work as above.
  1.1266 +        </li>
  1.1267 +        <li id="animtype-simple-list">
  1.1268 +          <strong>simple list</strong> of other types:
  1.1269 +          If the lists have the same number of items,
  1.1270 +          and each pair of values can be interpolated,
  1.1271 +          each item in the list is interpolated using
  1.1272 +          the rules given for those types.
  1.1273 +          Otherwise the values are not interpolable.
  1.1274 +        </li>
  1.1275 +        <li id="animtype-repeatable-list">
  1.1276 +          <strong>repeatable list</strong> of other types:
  1.1277 +          The result list has a length that is the least common multiple
  1.1278 +          of the lengths of the input lists.
  1.1279 +          Each item in the result is the interpolation of the value
  1.1280 +          from each input list repeated to the length of the result list.
  1.1281 +          If a pair of values cannot be interpolated, then the lists
  1.1282 +          are not interpolable.
  1.1283 +          <span class="note">
  1.1284 +            The repeatable list concept ensures that a list that is
  1.1285 +            conceptually repeated to a certain length (as
  1.1286 +            'background-origin' is repeated to the length of the
  1.1287 +            'background-image' list) or repeated infinitely will
  1.1288 +            smoothly transition between any values, and so that the
  1.1289 +            computed value will properly represent the result (and
  1.1290 +            potentially be inherited correctly).
  1.1291 +          </span>
  1.1292 +        </li>
  1.1293 +      </ul>
  1.1294 +
  1.1295 +      <p>Future specifications may define additional types that can
  1.1296 +      be animated.</p>
  1.1297 +
  1.1298 +      <p>See the definition of 'transition-property' for how animation
  1.1299 +      of shorthand properties and the ''all'' value is applied to any
  1.1300 +      properties (in the shorthand) that can be animated.</p>
  1.1301 +
  1.1302 +      <h2 id="animatable-properties"><a id="animatable-properties-">
  1.1303 +        Animatable properties
  1.1304 +      </a></h2>
  1.1305 +
  1.1306 +      <!--
  1.1307 +      As resolved in
  1.1308 +      http://lists.w3.org/Archives/Public/www-style/2011Sep/0497.html
  1.1309 +      -->
  1.1310 +
  1.1311 +      <p>The definition of each CSS property defines
  1.1312 +      when the values of that property can be interpolated
  1.1313 +      by referring to the definitions of property types
  1.1314 +      in the <a href="#animatable-types">previous section</a>.
  1.1315 +      Values are animatable when
  1.1316 +      both the from and the to values of the property have the type described.
  1.1317 +      (When a composite type such as "length, percentage, or calc" is listed,
  1.1318 +      this means that both values must fit into that composite type.)
  1.1319 +      When multiple types are listed in the form "either A or B",
  1.1320 +      both values must be of the same type to be interpolable.</p>
  1.1321 +
  1.1322 +      <p>For properties that exist at the time this specification was
  1.1323 +      developed, this specification defines whether and how they are
  1.1324 +      animated.  However, future CSS specifications may define
  1.1325 +      additional properties, additional values for existing properties,
  1.1326 +      or additional animation behavior of existing values.  In order to
  1.1327 +      describe new animation behaviors and to have the definition of
  1.1328 +      animation behavior in a more appropriate location, future CSS
  1.1329 +      specifications should include an "Animatable:" line in the summary
  1.1330 +      of the property's definition (in addition to the other lines
  1.1331 +      described in [[CSS21]], <a
  1.1332 +      href="http://www.w3.org/TR/CSS21/about.html#property-defs">section
  1.1333 +      1.4.2</a>).  This line should say "no" to indicate that a property
  1.1334 +      cannot be animated or should reference an animation behavior
  1.1335 +      (which may be one of the behaviors in the <a
  1.1336 +      href="#animation-of-property-types-">Animation of property
  1.1337 +      types</a> section above, or may be a new behavior) to define how
  1.1338 +      the property animates.  Such definitions override those given in
  1.1339 +      this specification.</p>
  1.1340 +
  1.1341 +      <h3 id="animatable-css"><a id="properties-from-css-">
  1.1342 +        Properties from CSS
  1.1343 +      </a></h3>
  1.1344 +
  1.1345 +      <p>
  1.1346 +      The following definitions define the animation behavior for
  1.1347 +      properties in CSS Level 2 Revision 1 ([[CSS21]]) and in Level 3 of
  1.1348 +      the CSS Color Module ([[CSS3COLOR]]).
  1.1349 +      </p>
  1.1350 +
  1.1351 +     <table class="animatable-properties">
  1.1352 +       <tr>
  1.1353 +         <th>Property Name</th>
  1.1354 +         <th>Type</th>
  1.1355 +       </tr>
  1.1356 +       <tr>
  1.1357 +         <td>background-color</td><td>as <a href="#animtype-color">color</a></tr>
  1.1358 +       <tr>
  1.1359 +         <td>background-position</td><td>as <a href="#animtype-repeatable-list">repeatable list</a> of <a href="#animtype-simple-list">simple list</a> of <a href="#animtype-lpcalc">length, percentage, or calc</a></td>
  1.1360 +       </tr>
  1.1361 +       <tr>
  1.1362 +         <td>border-bottom-color</td><td>as <a href="#animtype-color">color</a></td>
  1.1363 +       </tr>
  1.1364 +       <tr>
  1.1365 +         <td>border-bottom-width</td><td>as <a href="#animtype-length">length</a></td>
  1.1366 +       </tr>
  1.1367 +       <tr>
  1.1368 +         <td>border-left-color</td><td>as <a href="#animtype-color">color</a></td>
  1.1369 +       </tr>
  1.1370 +       <tr>
  1.1371 +         <td>border-left-width</td><td>as <a href="#animtype-length">length</a></td>
  1.1372 +       </tr>
  1.1373 +       <tr>
  1.1374 +         <td>border-right-color</td><td>as <a href="#animtype-color">color</a></td>
  1.1375 +       </tr>
  1.1376 +       <tr>
  1.1377 +         <td>border-right-width</td><td>as <a href="#animtype-length">length</a></td>
  1.1378 +       </tr>
  1.1379 +       <tr>
  1.1380 +         <td>border-spacing</td><td>as <a href="#animtype-simple-list">simple list</a> of <a href="#animtype-length">length</a></td>
  1.1381 +       </tr>
  1.1382 +       <tr>
  1.1383 +         <td>border-top-color</td><td>as <a href="#animtype-color">color</a></td>
  1.1384 +       </tr>
  1.1385 +       <tr>
  1.1386 +         <td>border-top-width</td><td>as <a href="#animtype-length">length</a></td>
  1.1387 +       </tr>
  1.1388 +       <tr>
  1.1389 +         <td>bottom</td><td>as <a href="#animtype-lpcalc">length, percentage, or calc</a></td>
  1.1390 +       </tr>
  1.1391 +       <tr>
  1.1392 +         <td>clip</td><td>as <a href="#animtype-rect">rectangle</a></td>
  1.1393 +       </tr>
  1.1394 +       <tr>
  1.1395 +         <td>color</td><td>as <a href="#animtype-color">color</a></td>
  1.1396 +       </tr>
  1.1397 +       <tr>
  1.1398 +         <td>font-size</td><td>as <a href="#animtype-length">length</a></td>
  1.1399 +       </tr>
  1.1400 +       <tr>
  1.1401 +         <td>font-weight</td><td>as <a href="#animtype-font-weight">font weight</a></td>
  1.1402 +       </tr>
  1.1403 +       <tr>
  1.1404 +         <td>height</td><td>as <a href="#animtype-lpcalc">length, percentage, or calc</a></td>
  1.1405 +       </tr>
  1.1406 +       <tr>
  1.1407 +         <td>left</td><td>as <a href="#animtype-lpcalc">length, percentage, or calc</a></td>
  1.1408 +       </tr>
  1.1409 +       <tr>
  1.1410 +         <td>letter-spacing</td><td>as <a href="#animtype-length">length</a></td>
  1.1411 +       </tr>
  1.1412 +       <tr>
  1.1413 +         <td>line-height</td><td>as either <a href="#animtype-number">number</a> or <a href="#animtype-length">length</a></td>
  1.1414 +       </tr>
  1.1415 +       <tr>
  1.1416 +         <td>margin-bottom</td><td>as <a href="#animtype-length">length</a></td>
  1.1417 +       </tr>
  1.1418 +       <tr>
  1.1419 +         <td>margin-left</td><td>as <a href="#animtype-length">length</a></td>
  1.1420 +       </tr>
  1.1421 +       <tr>
  1.1422 +         <td>margin-right</td><td>as <a href="#animtype-length">length</a></td>
  1.1423 +       </tr>
  1.1424 +       <tr>
  1.1425 +         <td>margin-top</td><td>as <a href="#animtype-length">length</a></td>
  1.1426 +       </tr>
  1.1427 +       <tr>
  1.1428 +         <td>max-height</td><td>as <a href="#animtype-lpcalc">length, percentage, or calc</a></td>
  1.1429 +       </tr>
  1.1430 +       <tr>
  1.1431 +         <td>max-width</td><td>as <a href="#animtype-lpcalc">length, percentage, or calc</a></td>
  1.1432 +       </tr>
  1.1433 +       <tr>
  1.1434 +         <td>min-height</td><td>as <a href="#animtype-lpcalc">length, percentage, or calc</a></td>
  1.1435 +       </tr>
  1.1436 +       <tr>
  1.1437 +         <td>min-width</td><td>as <a href="#animtype-lpcalc">length, percentage, or calc</a></td>
  1.1438 +       </tr>
  1.1439 +       <tr>
  1.1440 +         <td>opacity</td><td>as <a href="#animtype-number">number</a></td>
  1.1441 +       </tr>
  1.1442 +       <tr>
  1.1443 +         <td>outline-color</td><td>as <a href="#animtype-color">color</a></td>
  1.1444 +       </tr>
  1.1445 +       <tr>
  1.1446 +         <td>outline-width</td><td>as <a href="#animtype-length">length</a></td>
  1.1447 +       </tr>
  1.1448 +       <tr>
  1.1449 +         <td>padding-bottom</td><td>as <a href="#animtype-length">length</a></td>
  1.1450 +       </tr>
  1.1451 +       <tr>
  1.1452 +         <td>padding-left</td><td>as <a href="#animtype-length">length</a></td>
  1.1453 +       </tr>
  1.1454 +       <tr>
  1.1455 +         <td>padding-right</td><td>as <a href="#animtype-length">length</a></td>
  1.1456 +       </tr>
  1.1457 +       <tr>
  1.1458 +         <td>padding-top</td><td>as <a href="#animtype-length">length</a></td>
  1.1459 +       </tr>
  1.1460 +       <tr>
  1.1461 +         <td>right</td><td>as <a href="#animtype-lpcalc">length, percentage, or calc</a></td>
  1.1462 +       </tr>
  1.1463 +       <tr>
  1.1464 +         <td>text-indent</td><td>as <a href="#animtype-lpcalc">length, percentage, or calc</a></td>
  1.1465 +       </tr>
  1.1466 +       <tr>
  1.1467 +         <td>text-shadow</td><td>as <a href="#animtype-shadow-list">shadow list</a></td>
  1.1468 +       </tr>
  1.1469 +       <tr>
  1.1470 +         <td>top</td><td>as <a href="#animtype-lpcalc">length, percentage, or calc</a></td>
  1.1471 +       </tr>
  1.1472 +       <tr>
  1.1473 +         <td>vertical-align</td><td>as <a href="#animtype-length">length</a></td>
  1.1474 +       </tr>
  1.1475 +       <tr>
  1.1476 +         <td>visibility</td><td>as <a href="#animtype-visibility">visibility</a></td>
  1.1477 +       </tr>
  1.1478 +       <tr>
  1.1479 +         <td>width</td><td>as <a href="#animtype-lpcalc">length, percentage, or calc</a></td>
  1.1480 +       </tr>
  1.1481 +       <tr>
  1.1482 +         <td>word-spacing</td><td>as <a href="#animtype-length">length</a></td>
  1.1483 +       </tr>
  1.1484 +       <tr>
  1.1485 +         <td>z-index</td><td>as <a href="#animtype-integer">integer</a></td>
  1.1486 +       </tr>
  1.1487 +     </table>
  1.1488 +
  1.1489 +     <h3 id="animatable-svg"><a id="properties-from-svg-">
  1.1490 +       Properties from SVG
  1.1491 +     </a></h3>
  1.1492 +
  1.1493 +     <p>
  1.1494 +       All properties defined as animatable in the SVG specification, provided
  1.1495 +       they are one of the property types listed above.
  1.1496 +      </p>
  1.1497 +
  1.1498 +     <!-- <table>
  1.1499 +       <tr>
  1.1500 +         <th>Property Name</th><th>Type</th>
  1.1501 +       </tr>
  1.1502 +       <tr>
  1.1503 +         <td>stop-color</td><td>as <a href="#animtype-color">color</a></td>
  1.1504 +       </tr>
  1.1505 +       <tr>
  1.1506 +         <td>stop-opacity</td><td>as <a href="#animtype-number">number</a></td>
  1.1507 +       </tr>
  1.1508 +       <tr>
  1.1509 +         <td>fill</td><td>as <a href="#animtype-paintserver">paint server</a></td>
  1.1510 +       </tr>
  1.1511 +       <tr>
  1.1512 +         <td>fill-opacity</td><td>as <a href="#animtype-number">number</a></td>
  1.1513 +       </tr>
  1.1514 +       <tr>
  1.1515 +         <td>stroke</td><td>as <a href="#animtype-paintserver">paint server</a></td>
  1.1516 +       </tr>
  1.1517 +       <tr>
  1.1518 +         <td>stroke-dasharray</td><td>as <a href="#animtype-repeatable-list">repeatable list</a> of <a href="#animtype-number">number</a></td>
  1.1519 +       </tr>
  1.1520 +       <tr>
  1.1521 +         <td>stroke-dashoffset</td><td>as <a href="#animtype-number">number</a></td>
  1.1522 +       </tr>
  1.1523 +       <tr>
  1.1524 +         <td>stroke-miterlimit</td><td>as <a href="#animtype-number">number</a></td>
  1.1525 +       </tr>
  1.1526 +       <tr>
  1.1527 +         <td>stroke-opacity</td><td>as <a href="#animtype-number">number</a></td>
  1.1528 +       </tr>
  1.1529 +       <tr>
  1.1530 +         <td>stroke-width</td><td>as <a href="#animtype-number">number</a></td>
  1.1531 +       </tr>
  1.1532 +       <tr>
  1.1533 +         <td>viewport-fill</td><td>as <a href="#animtype-color">color</a></td>
  1.1534 +       </tr>
  1.1535 +       <tr>
  1.1536 +         <td>viewport-fill-opacity</td><td>as <a href="#animtype-color">color</a></td>
  1.1537 +       </tr>
  1.1538 +      </table> -->
  1.1539 +
  1.1540 +<h2 id="acknowledgments">Acknowledgments</h2>
  1.1541 +
  1.1542 +<p>Thanks especially to the feedback from
  1.1543 +Tab Atkins,
  1.1544 +Carine Bournez,
  1.1545 +Aryeh Gregor,
  1.1546 +Vincent Hardy,
  1.1547 +Cameron McCormack,
  1.1548 +Alex Mogilevsky,
  1.1549 +and all the rest of the
  1.1550 +<a href="http://lists.w3.org/Archives/Public/www-style/">www-style</a> community.</p>
  1.1551 +
  1.1552 +<h2 id="references">References</h2>
  1.1553 +
  1.1554 +<h3 class="no-num" id="normative-references">Normative references</h3>
  1.1555 +<!--normative-->
  1.1556 +
  1.1557 +<h3 class="no-num" id="other-references">Other references</h3>
  1.1558 +<!--informative-->
  1.1559 +
  1.1560 +
  1.1561 +
  1.1562 +<h2 class="no-num" id="property-index">Property index</h2>
  1.1563 +<!-- properties -->
  1.1564 +
  1.1565 +
  1.1566 +
  1.1567 +<h2 class="no-num" id="index">Index</h2>
  1.1568 +<!--index-->
  1.1569 +
  1.1570 +</body>
  1.1571 +</html>
  1.1572 +<!-- Keep this comment at the end of the file
  1.1573 +Local variables:
  1.1574 +mode: sgml
  1.1575 +sgml-default-doctype-name:"html"
  1.1576 +sgml-minimize-attributes:t
  1.1577 +End:
  1.1578 +-->

mercurial