mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-09 02:21:53 +00:00
16 lines
405 B
HTML
16 lines
405 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<table id="table"><td id="td"></td></table>
|
|
<script>
|
|
function testCellpadding(value) {
|
|
table.setAttribute("cellpadding", value);
|
|
println(getComputedStyle(td).padding);
|
|
}
|
|
|
|
test(() => {
|
|
testCellpadding("1");
|
|
testCellpadding("5");
|
|
testCellpadding("0");
|
|
testCellpadding("-1");
|
|
});
|
|
</script>
|