diff options
author | bptato <nincsnevem662@gmail.com> | 2024-06-11 00:40:15 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-06-11 00:46:34 +0200 |
commit | 17bf0e843084712d9a914868ec44896f48d9d13a (patch) | |
tree | 4bafa32869cd5451090267005d8d81fded951f2f /test/layout | |
parent | 48be38b8d04b9ca0c6796e259d762e4533d9a458 (diff) | |
download | chawan-17bf0e843084712d9a914868ec44896f48d9d13a.tar.gz |
cssvalues: add "clear" to table wrapper box
this one is weird but I'm sure the standard is technically right
Diffstat (limited to 'test/layout')
-rw-r--r-- | test/layout/float-clear-table.expected | 2 | ||||
-rw-r--r-- | test/layout/float-clear-table.html | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/test/layout/float-clear-table.expected b/test/layout/float-clear-table.expected new file mode 100644 index 00000000..bebdf668 --- /dev/null +++ b/test/layout/float-clear-table.expected @@ -0,0 +1,2 @@ + test + test diff --git a/test/layout/float-clear-table.html b/test/layout/float-clear-table.html new file mode 100644 index 00000000..6e396fd7 --- /dev/null +++ b/test/layout/float-clear-table.html @@ -0,0 +1,3 @@ +<!DOCTYPE html> +<div style="display: table; clear: right; float: right">test</div> +<div style="display: table; clear: right; float: right">test</div> |