mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-15 21:41:58 +00:00
10 lines
274 B
HTML
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>
|