Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<!DOCTYPE html>
<style>
body {
background-image: url("../../images/red.png");
}
</style>
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html class="reftest-wait">
<title>animated image for body background does not pause when image-animation is on body</title>
<link rel="help" href="https://drafts.csswg.org/css-image-animation-1/">
<meta charset="utf-8" />
<link rel="match" href="image-animation-body-background-no-propagation-paused-ref.html" />
<script src="/common/reftest-wait.js"></script>
<script>
takeScreenshotDelayed(300);
</script>

<style>
body {
image-animation: paused;
background-image: url("../../images/anim-gr.gif");
}
</style>

</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<!DOCTYPE html>
<style>
body {
background-image: url("../../images/green.png");
}
</style>
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html class="reftest-wait">
<title>pausing animated image for body background which propagates to root</title>
<link rel="help" href="https://drafts.csswg.org/css-image-animation-1/">
<meta charset="utf-8" />
<link rel="match" href="image-animation-body-background-root-propagation-paused-ref.html" />
<script src="/common/reftest-wait.js"></script>
<script>
takeScreenshotDelayed(300);
</script>

<style>
html {
image-animation: paused;
}
body {
background-image: url("../../images/anim-gr.gif");
}
</style>

</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<style>
div {
width: 100px;
height: 100px;
background-repeat: repeat;
background-image: url("../../images/green.png");
}
</style>
<div></div>
<div></div>
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html class="reftest-wait">
<title>pausing animated image for repeat background image</title>
<link rel="help" href="https://drafts.csswg.org/css-image-animation-1/">
<meta charset="utf-8" />
<link rel="match" href="image-animation-repeat-background-paused-ref.html" />
<script src="/common/reftest-wait.js"></script>
<script>
takeScreenshotDelayed(300);
</script>

<style>
div {
width: 100px;
height: 100px;
image-animation: paused;
background-repeat: repeat;
}
#box1 {
background-image: url("../../images/anim-gr.gif");
}
#box2 {
background-image: url("../../images/anim-gr.png");
}
</style>

<div id="box1"></div>
<div id="box2"></div>

</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<!DOCTYPE html>
<style>
html {
background-image: url("../../images/red.png");
}
</style>
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html class="reftest-wait">
<title>animated image for root background does not pause when image-animation is on body</title>
<link rel="help" href="https://drafts.csswg.org/css-image-animation-1/">
<meta charset="utf-8" />
<link rel="match" href="image-animation-root-background-body-paused-no-propagation-ref.html" />
<script src="/common/reftest-wait.js"></script>
<script>
takeScreenshotDelayed(300);
</script>

<style>
html {
background-image: url("../../images/anim-gr.gif");
}
body {
image-animation: paused;
}
</style>

</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<!DOCTYPE html>
<style>
html {
background-image: url("../../images/green.png");
}
</style>
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html class="reftest-wait">
<title>pausing animated image for root background</title>
<link rel="help" href="https://drafts.csswg.org/css-image-animation-1/">
<meta charset="utf-8" />
<link rel="match" href="image-animation-root-background-paused-ref.html" />
<script src="/common/reftest-wait.js"></script>
<script>
takeScreenshotDelayed(300);
</script>

<style>
html {
image-animation: paused;
background-image: url("../../images/anim-gr.gif");
}
</style>

</html>
Loading