blob: edb37c1379cc32f081dea6a06e88a07f2f2b2e74 [file] [log] [blame]
<!DOCTYPE html>
<html id="top">
<meta charset="utf-8">
<title>View timeline delay</title>
<link rel="help" href="https://drafts.csswg.org/scroll-animations-1/#viewtimeline-interface">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/web-animations/testcommon.js"></script>
<script src="/scroll-animations/scroll-timelines/testcommon.js"></script>
<script src="/scroll-animations/view-timelines/testcommon.js"></script>
<style>
#container {
border: 10px solid lightgray;
overflow-x: scroll;
height: 200px;
width: 200px;
}
#content {
display: flex;
flex-flow: row nowrap;
justify-content: flex-start;
width: 2100px;
margin: 0;
}
.spacer {
width: 800px;
display: inline-block;
}
#target {
background-color: green;
height: 100px;
/* target size > viewport size, which changes interpretation of the
contain range */
width: 400px;
display: inline-block;
}
</style>
<body>
<div id="container">
<div id="content">
<div class="spacer"></div>
<div id="target"></div>
<div class="spacer"></div>
</div>
</div>
</body>
<script type="text/javascript">
promise_test(async t => {
await runTimelineDelayTest(t, {
delay: { phase: 'cover', percent: CSS.percent(0) } ,
endDelay: { phase: 'cover', percent: CSS.percent(100) },
rangeStart: 600,
rangeEnd: 1200
});
await runTimelineDelayTest(t, {
delay: { phase: 'contain', percent: CSS.percent(0) } ,
endDelay: { phase: 'contain', percent: CSS.percent(100) },
rangeStart: 800,
rangeEnd: 1000
});
await runTimelineDelayTest(t, {
delay: { phase: 'enter', percent: CSS.percent(0) },
endDelay: { phase: 'enter', percent: CSS.percent(100) },
rangeStart: 600,
rangeEnd: 800
});
await runTimelineDelayTest(t, {
delay: { phase: 'exit', percent: CSS.percent(0) },
endDelay: { phase: 'exit', percent: CSS.percent(100) },
rangeStart: 1000,
rangeEnd: 1200
});
await runTimelineDelayTest(t, {
delay: { phase: 'contain', percent: CSS.percent(-50) },
endDelay: { phase: 'enter', percent: CSS.percent(200) },
rangeStart: 700,
rangeEnd: 1000
});
await runTimelineDelayTest(t, {
delay: { phase: 'enter' },
endDelay: { phase: 'exit' },
rangeStart: 600,
rangeEnd: 1200
});
await runTimelineDelayTest(t, {
delay: { percent: CSS.percent(0) },
endDelay: { percent: CSS.percent(100) },
rangeStart: 600,
rangeEnd: 1200
});
}, 'View timeline with range set via delays.' );
</script>