ladybird/Tests/LibWeb/Text/input/css/cssFloat-property.html
2025-03-20 11:50:49 +01:00

14 lines
345 B
HTML

<!DOCTYPE html>
<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>