ladybird/Tests/LibWeb/Text/input/base/link-element-base.html

19 lines
488 B
HTML
Raw Normal View History

2024-08-10 20:23:13 -06:00
<!DOCTYPE html>
<html>
<head>
<base href="..">
<link rel="stylesheet" href="body-background-color-red.css">
</head>
<body>
<script src="include.js"></script>
<script>
asyncTest(done => {
2024-08-10 20:23:13 -06:00
window.onload = () => {
println("document background: " + getComputedStyle(document.body).backgroundColor);
done();
2024-08-10 20:23:13 -06:00
};
});
</script>
</body>
</html>