Files
tubestation/layout/reftests/css-animations/updating-animation-on-pseudo-element-ref.html
Hiroyuki Ikezoe da39bfe653 Bug 1367278 - Call may_have_animations() for parent element in the case where the target is pseudo element. r=birtles
In case of pseudo elements ElementHasAnimations is set on the parent element.

updating-animation-on-pseudo-element.html fails without this patch, succeeds
with this patch.

MozReview-Commit-ID: HJaX7m8nV96
2017-07-20 12:53:11 +09:00

12 lines
153 B
HTML

<!DOCTYPE html>
<html>
<style>
#target::before {
content: 'before';
margin-left: 10em;
font-size: 20px;
}
</style>
<div id="target"></div>
</html>