ladybird/Tests/LibWeb/Text/input/css/cssFloat-property.html

15 lines
345 B
HTML
Raw Normal View History

2025-03-18 19:28:35 +01:00
<!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>