Newer
Older
minerva / Tests / LibWeb / Text / input / css / cssFloat-property.html
@minerva minerva on 13 Jul 329 bytes Initial commit
<style>
span {
    float: right;
}
</style>
<script src="../include.js"></script>
<script>
    test(() => {
        const spanRule = document.styleSheets[0].cssRules[0];
        println("spanRule: " + spanRule + " ~ " + spanRule.cssText);
        println("spanRule.style.cssFloat: " + spanRule.style.cssFloat);
    });
</script>