diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/invalidation/jetstream-scroll-ref.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/invalidation/jetstream-scroll-ref.html')
-rw-r--r-- | layout/reftests/invalidation/jetstream-scroll-ref.html | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/layout/reftests/invalidation/jetstream-scroll-ref.html b/layout/reftests/invalidation/jetstream-scroll-ref.html new file mode 100644 index 0000000000..780c77ef0c --- /dev/null +++ b/layout/reftests/invalidation/jetstream-scroll-ref.html @@ -0,0 +1,70 @@ +<!DOCTYPE html> +<html class="reftest-wait" reftest-async-scroll><head> +<meta http-equiv="content-type" content="text/html; charset=UTF-8"><meta charset="utf-8"> +<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes, viewport-fit=cover"> +<style> + figure { + position: relative; + width: 100vw; + left: 50%; + transform: translate(-50%); + } + + figure img { + filter: url(#invertLightness) + } + + main { scrollbar-width: none; width: 400px; height: 500px; overflow: auto; border: 1px solid black; } +</style> + +</head> + +<body> + + <svg xmlns="http://www.w3.org/2000/svg"> <style>svg{display:block;width:0;height:0}</style> + <filter id="invertLightness" x="0" y="0" style="color-interpolation-filters:sRGB"> + <feColorMatrix type="matrix" in="SourceGraphic" result="red" values="1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1"> + </feColorMatrix> + <feColorMatrix type="matrix" in="SourceGraphic" result="green" values="0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1"> + </feColorMatrix> + <feColorMatrix type="matrix" in="SourceGraphic" result="blue" values="0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1"> + </feColorMatrix> + <feBlend in="red" in2="green" mode="lighten" result="maxyellow"></feBlend> + <feBlend in="maxyellow" in2="blue" mode="lighten" result="max"></feBlend> + <feBlend in="red" in2="green" mode="darken" result="minyellow"></feBlend> + <feBlend in="minyellow" in2="blue" mode="darken" result="min"></feBlend> + <feComponentTransfer result="adjustment" in="min"> + <feFuncR type="linear" intercept="1" slope="-1"></feFuncR> + <feFuncG type="linear" intercept="1" slope="-1"></feFuncG> + <feFuncB type="linear" intercept="1" slope="-1"></feFuncB> + </feComponentTransfer> + <feComposite operator="arithmetic" in="SourceGraphic" in2="adjustment" k1="0" k2="1" k3="1" k4="-1" result="channelAdjustment"></feComposite> + <feComposite operator="arithmetic" in="channelAdjustment" in2="max" k1="0" k2="1" k3="-1" k4="1" result="finalColors"> + </feComposite> + <feComposite operator="in" in="finalColors" in2="SourceAlpha"></feComposite> + </filter> + </svg> + <main id="content" + reftest-displayport-x="0" + reftest-displayport-y="0" + reftest-displayport-w="400" + reftest-displayport-h="500"> + <div> + <article> + <div> + <div style="height: 1000px"></div> + <figure> + <img id=telement src="data:image/webp;base64,UklGRugAAABXRUJQVlA4TNsAAAAvOEuOAQfQxhK3sf8BBW3bMOUPvzuO6H+G//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//qwEA" alt="JetStream 2 Scores. Bigger is Better."> + </figure> + </div> + </article> + </div> + </main> +</body> +<script> + + document.getElementById("content").scrollTop = 1100; + document.documentElement.removeAttribute("class"); +</script> + +</html> |