gecko-dev/layout/reftests/css-animations/opacity-animation-in-fixed-opacity-parent.html
Hiroyuki Ikezoe 415481dcda Bug 1440556 - Drop reftest-wait in opacity-animation-in-fixed-opacity-parent.html. r=birtles
This reftest passes without reftest-wait, and fails without reftest-wait if the
fix for bug 1395151 is backed-out.

MozReview-Commit-ID: GitJkk014yi

--HG--
extra : rebase_source : 3447145df1c58819ac178f02cb7dbe9cc35c8604
2018-02-23 14:06:49 +09:00

40 lines
655 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Testcase, bug 1395151</title>
<style type="text/css">
@keyframes test-anim {
from { opacity : 1 }
to { opacity : 1 }
}
.ok {
background : #0f0;
height : 40px;
width : 40px;
}
.error {
opacity : .001;
height : 100%;
width : 100%;
}
.error > span {
animation : test-anim 1s linear infinite;
background : #f00;
content : "";
display : block;
height : 100%;
width : 100%;
}
</style>
</head>
<body>
<div class="ok">
<div class="error"><span></span></div>
</div>
</body>
</html>