mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Update web-platform-tests to revision b'0802d8bd01e17178d9cd2355e6fbaf3c098e7953'
This commit is contained in:
parent
aa427dd412
commit
9ed042224a
254 changed files with 10823 additions and 1484 deletions
|
@ -0,0 +1,51 @@
|
|||
<!DOCTYPE html>
|
||||
<html class=reftest-wait>
|
||||
<title>Shared transitions: capture opacity elements</title>
|
||||
<link rel="help" href="https://github.com/WICG/view-transitions">
|
||||
<link rel="author" href="mailto:khushalsagar@chromium.org">
|
||||
<link rel="match" href="web-animations-api-ref.html">
|
||||
<meta name="fuzzy" content="web-animations-api-ref.html:0-2;0-500">
|
||||
|
||||
<script src="/common/reftest-wait.js"></script>
|
||||
<style>
|
||||
#first {
|
||||
background: blue;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
contain: paint;
|
||||
}
|
||||
#second {
|
||||
background: green;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
contain: paint;
|
||||
}
|
||||
|
||||
/* Unset all animations since the test drives it using WA-API */
|
||||
html::view-transition-group(*),
|
||||
html::view-transition-image-pair(*),
|
||||
html::view-transition-new(*),
|
||||
html::view-transition-old(*) {
|
||||
animation: unset;
|
||||
}
|
||||
</style>
|
||||
<div id=first></div>
|
||||
<div id=second></div>
|
||||
<script>
|
||||
function setAnimation() {
|
||||
document.documentElement.animate({ transform: ['translate(100px)', 'translate(100px)'] }, { duration: 10000, pseudoElement: '::view-transition-group(first)'});
|
||||
document.documentElement.animate({ transform: ['translate(150px)', 'translate(150px)'] }, { duration: 10000, pseudoElement: '::view-transition-group(second)'});
|
||||
requestAnimationFrame(takeScreenshot);
|
||||
}
|
||||
|
||||
async function runTest() {
|
||||
first.style.viewTransitionName = "first";
|
||||
document.startViewTransition(() => {
|
||||
first.style.viewTransitionName = "";
|
||||
second.style.viewTransitionName = "second";
|
||||
requestAnimationFrame(setAnimation);
|
||||
});
|
||||
}
|
||||
onload = () => requestAnimationFrame(() => requestAnimationFrame(runTest));
|
||||
</script>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue