Tests: Import/create tests related to absolutization of StyleValues

Done in a separate commit to show progress
This commit is contained in:
Callum Law
2025-08-04 23:22:34 +12:00
committed by Sam Atkins
parent c8bd58c0ba
commit 70cb8d23fb
Notes: github-actions[bot] 2025-08-06 16:45:54 +00:00
6 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<style>
#foo {
background-size: calc(1em - 1px) calc(1em - 1px);
}
</style>
<div id="foo"></div>
<script src="../include.js"></script>
<script>
test(() => {
println(getComputedStyle(foo).backgroundSize);
});
</script>