mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 13:19:47 +00:00
18 lines
453 B
HTML
18 lines
453 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<base href="..">
|
|
<link rel="stylesheet" href="body-background-color-red.css">
|
|
</head>
|
|
<body>
|
|
<script src="include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
window.onload = () => {
|
|
println("document background: " + getComputedStyle(document.body).backgroundColor);
|
|
};
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|