1
0
Fork 0
firefox/layout/reftests/css-visited/transition-on-visited.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

25 lines
500 B
HTML

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1381235
-->
<head>
<title>Test for Bug 1381235</title>
<style>
a {
text-decoration: none;
color: rgb(255, 0, 0);
transition: color 1000s steps(2, start);
}
</style>
</head>
<body onload="runTest()">
<a id="link" href="visited-page.html">Visited Link</a>
<script type="application/javascript">
function runTest() {
var a = document.getElementById("link");
a.style.color = "rgb(0, 0, 255)";
}
</script>
</body>
</html>