ladybird/Tests/LibWeb/Text/input/link-element-media-change-off.html

18 lines
508 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="body-background-color-red.css" media="all" onload="this.media='none'">
</head>
<body>
<script src="include.js"></script>
<script>
asyncTest(done => {
window.onload = function () {
println("document background: " + getComputedStyle(document.body).backgroundColor);
done();
};
});
</script>
</body>
</html>