forked from mirrors/gecko-dev
* partially-out-of-view-animation.html This test is a normal test case (i.e. a trivial one). An animation on an element which is partially out of the view. If ofscreen optimization is totally broken, this test will fail. * in-visibility-hidden-animation-pseudo-element.html This test checks animation on visible pseudo element which is attached to invisible element is not throttled. * in-visibility-hidden-animation.html This test checks animation on visible element which is inherited from invisible parent element is not throttled.
15 lines
229 B
HTML
15 lines
229 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<title>Animation on element which is partially out of the view</title>
|
|
<style>
|
|
|
|
div {
|
|
position: absolute;
|
|
width: 200px;
|
|
height: 200px;
|
|
background-color: blue;
|
|
top: -100px;
|
|
}
|
|
|
|
</style>
|
|
<div></div>
|