forked from mirrors/gecko-dev
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 --HG-- extra : rebase_source : 15466f065d852ebc5fefd5d305639ba366a221f6
11 lines
153 B
HTML
11 lines
153 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
#target::before {
|
|
content: 'before';
|
|
margin-left: 10em;
|
|
font-size: 20px;
|
|
}
|
|
</style>
|
|
<div id="target"></div>
|
|
</html>
|