mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
LibWeb: Remove unnecessary FIXME marker for CSSStyleDeclaration.cssFloat
This commit is contained in:
committed by
Andreas Kling
parent
19fa630fa7
commit
4c94202e97
Notes:
sideshowbarker
2024-07-17 06:51:10 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/LadybirdBrowser/ladybird/commit/4c94202e97 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/168
13
Tests/LibWeb/Text/input/css/cssFloat-property.html
Normal file
13
Tests/LibWeb/Text/input/css/cssFloat-property.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user