blob: 5ca4a0289f7bcb4d7c073722cba72087c8dfa644 [file] [log] [blame]
<!DOCTYPE>
<html>
<head>
<style>
.box {
height: 100px;
width: 100px;
margin: 10px;
background: url('../fast/backgrounds/repeat/resources/gradient.gif') repeat 0 0;
transition-duration: 1s;
transition-timing-function: linear;
transition-property: background-position;
}
#box1 {
background-position: 10px 20px;
}
body.final #box1 {
background-position: left 80px top 100px;
}
#box2 {
background-position: right 10px bottom 20px;
}
body.final #box2 {
background-position: right 80px bottom 100px;
}
#box3 {
background-position: 10px 20px;
}
body.final #box3 {
background-position: right 80px bottom 100px;
}
</style>
<script src="resources/transition-test-helpers.js" type="text/javascript"></script>
<script>
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
[0.5, 'box1', 'background-position-x', "45px"],
[0.5, 'box1', 'background-position-y', "60px"],
[0.5, 'box2', 'background-position-x', "right 45px"],
[0.5, 'box2', 'background-position-y', "bottom 60px"],
[0.5, 'box3', 'background-position-x', "calc(50% - 35px)"],
[0.5, 'box3', 'background-position-y', "calc(50% - 40px)"],
];
function setupTest()
{
document.body.classList.add('final');
}
runTransitionTest(expectedValues, setupTest, usePauseAPI);
</script>
</head>
<body>
<div id="box1" class="box"></div>
<div id="box2" class="box"></div>
<div id="box3" class="box"></div>
<pre id="result"></pre>
</body>
</html>