mirror of
https://github.com/servo/servo.git
synced 2025-08-10 16:05:43 +01:00
Update web-platform-tests to revision b'45fdf45f79582953fb3aa708566cd2c0707cb222'
This commit is contained in:
parent
f7e88665c6
commit
812c6de70b
125 changed files with 1400 additions and 1046 deletions
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>View transitions: iframe transition to scrollbar (ref)</title>
|
||||
<link rel="help" href="https://github.com/WICG/view-transitions">
|
||||
<link rel="author" href="mailto:bokan@chromium.org">
|
||||
<style>
|
||||
iframe {
|
||||
width: 50vw;
|
||||
height: 50vh;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<iframe src="support/iframe-scrollbar-child.html?scrollbar">
|
||||
</iframe>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,37 @@
|
|||
<!DOCTYPE html>
|
||||
<html class=reftest-wait>
|
||||
<head>
|
||||
<title>View transitions: iframe transition to scrollbar</title>
|
||||
<link rel="help" href="https://github.com/WICG/view-transitions">
|
||||
<link rel="author" href="mailto:bokan@chromium.org">
|
||||
<link rel="match" href="iframe-new-has-scrollbar-ref.html">
|
||||
<meta name=fuzzy content="iframe-new-has-scrollbar-ref.html:0-80;0-500">
|
||||
<script src="/common/reftest-wait.js"></script>
|
||||
<style>
|
||||
iframe {
|
||||
width: 50vw;
|
||||
height: 50vh;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
onload = () => {
|
||||
requestAnimationFrame(()=>{requestAnimationFrame(()=> {
|
||||
frames[0].window.startTransition();
|
||||
frames[0].window.transition.ready.then(() => {
|
||||
requestAnimationFrame(()=>{requestAnimationFrame(()=> {
|
||||
// Expect that the scrollbar should appear immediately, even though
|
||||
// the new snapshot isn't visible (since the scrollbar isn't part
|
||||
// of the snapshot).
|
||||
takeScreenshot();
|
||||
})});
|
||||
});
|
||||
})});
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<iframe src="support/iframe-scrollbar-child.html">
|
||||
</iframe>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>View transitions: iframe transition from scrollbar (ref)</title>
|
||||
<link rel="help" href="https://github.com/WICG/view-transitions">
|
||||
<link rel="author" href="mailto:bokan@chromium.org">
|
||||
<style>
|
||||
iframe {
|
||||
width: 50vw;
|
||||
height: 50vh;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<iframe src="support/iframe-scrollbar-child.html">
|
||||
</iframe>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html class=reftest-wait>
|
||||
<head>
|
||||
<title>View transitions: iframe transition from scrollbar</title>
|
||||
<link rel="help" href="https://github.com/WICG/view-transitions">
|
||||
<link rel="author" href="mailto:bokan@chromium.org">
|
||||
<link rel="match" href="iframe-old-has-scrollbar-ref.html">
|
||||
<meta name=fuzzy content="iframe-old-has-scrollbar-ref.html:0-80;0-500">
|
||||
<script src="/common/reftest-wait.js"></script>
|
||||
<style>
|
||||
iframe {
|
||||
width: 50vw;
|
||||
height: 50vh;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
onload = () => {
|
||||
requestAnimationFrame(()=>{requestAnimationFrame(()=> {
|
||||
frames[0].window.startTransition();
|
||||
frames[0].window.transition.ready.then(() => {
|
||||
requestAnimationFrame(()=>{requestAnimationFrame(()=> {
|
||||
// Expect that the scrollbar should disappear immediately since it
|
||||
// isn't part of the snapshot.
|
||||
takeScreenshot();
|
||||
})});
|
||||
});
|
||||
})});
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<iframe src="support/iframe-scrollbar-child.html?scrollbar">
|
||||
</iframe>
|
||||
</body>
|
||||
</html>
|
|
@ -3,6 +3,8 @@
|
|||
<head>
|
||||
<style>
|
||||
body {
|
||||
/* We need a background due to https://crbug.com/1414158. */
|
||||
background-color: white;
|
||||
height: 200vh;
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,44 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
body.scrollable {
|
||||
width: 200lvw;
|
||||
height: 200lvh;
|
||||
}
|
||||
|
||||
div {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
background-color: skyblue;
|
||||
}
|
||||
|
||||
::view-transition-new(*) {
|
||||
animation-duration: 30s;
|
||||
opacity: 0;
|
||||
}
|
||||
::view-transition-old(*) {
|
||||
animation: unset;
|
||||
opacity: 1;
|
||||
}
|
||||
*/
|
||||
</style>
|
||||
<script>
|
||||
function startTransition() {
|
||||
window.transition = document.startViewTransition(() => {
|
||||
document.body.classList.toggle('scrollable');
|
||||
});
|
||||
}
|
||||
|
||||
onload = () => {
|
||||
const params = new URLSearchParams(window.location.search);
|
||||
if (params.has('scrollbar')) {
|
||||
document.body.classList.add('scrollable');
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div></div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue