1
0
Fork 0
firefox/testing/web-platform/tests/css/css-view-transitions/fractional-translation-from-position-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

30 lines
642 B
HTML

<!DOCTYPE html>
<html>
<title>View transitions: fractional translation from position (ref)</title>
<link rel="help" href="https://www.w3.org/TR/css-view-transitions-1/">
<link rel="author" href="mailto:khushalsagar@chromium.org">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
body {
width: 100vw;
height: 100vh;
background: grey;
font: 12px/1 Ahem;
}
#target {
width: 100px;
height: 100px;
position: fixed;
top: 100.52px;
left: 100.37px;
view-transition-name: target;
contain: layout;
will-change: filter;
}
</style>
<div id=target>
Here is some text which should not be blurry.
</div>