1
0
Fork 0
firefox/testing/web-platform/tests/css/css-ruby/ruby-text-dynamic-style.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

24 lines
490 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<link rel="help" href="https://crbug.com/347597917"/>
<link rel="match" href="reference/ruby-text-dynamic-style-ref.html">
<style>
.reftest-wait rt {
background-color: red;
}
ruby {
position: relative;
}
p {
position: relative;
}
</style>
<p><ruby>base<rt>annotation</ruby></p>
<script>
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.documentElement.classList.remove('reftest-wait');
});
});
</script>
</html>