ladybird/Tests/LibWeb/Text/input/css/absolutized-cursor-style-value.html
Callum Law 70cb8d23fb Tests: Import/create tests related to absolutization of StyleValues
Done in a separate commit to show progress
2025-08-06 17:44:12 +01:00

13 lines
291 B
HTML

<!DOCTYPE html>
<style>
#foo {
cursor: url(foo.png) calc(1 * sign(1em - 1px)) calc(2 * sign(1em - 1px)), pointer;
}
</style>
<div id="foo"></div>
<script src="../include.js"></script>
<script>
test(() => {
println(getComputedStyle(foo).cursor);
});
</script>