gecko-dev/layout/reftests/display-list/retained-dl-animation-on-pseudo-ref.html
Hiroyuki Ikezoe 63306d52b1 Bug 1459533 - A reftest that animation on a pseudo elemnt. r=mattwoodrow
This reftest fails without the fix in this series.

MozReview-Commit-ID: 3C8TEuCoTS3

--HG--
extra : rebase_source : 13278ee2f8f8facd38d050711330164bf9a174dd
2018-05-08 07:02:23 +09:00

29 lines
356 B
HTML

<html>
<head>
<style>
body {
margin: 0px;
}
#child {
width:100px;
height:100px;
background-color: green;
display: inline-block;
}
#parent::before {
content: '';
width: 100px;
height: 100px;
display: inline-block;
background-color: blue;
}
</style>
</head>
<body>
<div id="parent">
<div id="child"></div>
</div>
</body>
</html>