mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
14 lines
302 B
HTML
14 lines
302 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<style>
|
||
|
|
:root {
|
||
|
|
--my-background-color: #19db6e;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script src="include.js"></script>
|
||
|
|
<script>
|
||
|
|
test(() => {
|
||
|
|
const style = getComputedStyle(document.body);
|
||
|
|
println(`PASS: ${style.getPropertyValue("--my-background-color")}`);
|
||
|
|
});
|
||
|
|
</script>
|