mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-23 00:19:18 +00:00
13 lines
291 B
HTML
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>
|