Newer
Older
minerva / Tests / LibWeb / Text / input / link-element-media-change-off.html
@minerva minerva on 13 Jul 508 bytes Initial commit
<!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>