Skip to content

Clarify that the after-change style does not include updates to CSS Animations #1666

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 31, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions css-transitions/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ Starting of transitions {#starting}
implementations must start transitions based on
the <a>computed values</a> that changed in that event.
If an element is not in the document during that
style change even or was not in the document during
style change event or was not in the document during
the previous style change event,
then transitions are not started for that element
in that style change event.
Expand All @@ -584,9 +584,14 @@ Starting of transitions {#starting}
the <a>computed values</a> of all properties
on the element based on the information
known at the start of that <a>style change event</a>,
but excluding any styles from CSS Transitions in the computation,
but using the computed values of the 'animation-*' properties from the
<a>before-change style</a>,
excluding any styles from CSS Transitions in the computation,
and inheriting from
the <a>after-change style</a> of the parent.
Note that this means the <a>after-change style</a> does not differ from
the <a>before-change style</a> due to newly created or cancelled CSS
Animations.
</p>

<div class="note">
Expand Down