mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-15 07:32:52 +00:00
13 lines
329 B
HTML
13 lines
329 B
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>
|