mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-09 01:06:11 +00:00
17 lines
474 B
HTML
17 lines
474 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="body-background-color-red.css" media="print" onload="this.media='all'">
|
|
</head>
|
|
<body>
|
|
<script src="include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
window.onload = function () {
|
|
println("document background: " + getComputedStyle(document.body).backgroundColor);
|
|
};
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|