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

10 lines
274 B
HTML

<!DOCTYPE html>
<script src="../include.js"></script>
<script>
test(() => {
const style = getComputedStyle(document.body);
for (const property_name of style) {
println(`${property_name}: ${style[property_name]}`);
}
});
</script>