aboutsummaryrefslogtreecommitdiffstats
path: root/test/render/test34.htm
diff options
context:
space:
mode:
authorYuri Kobets <yuri.kobets@gmail.com>2023-06-07 02:52:59 +0300
committerYuri Kobets <yuri.kobets@gmail.com>2023-06-07 02:52:59 +0300
commit7ec04267b170160c995cc2e8986baba8e577dd99 (patch)
tree9046f9a6fd6739be229e2294ecd42ad840cf4648 /test/render/test34.htm
parentb0a6930308e9381d68ab86bdbfb59a6ae2f217d8 (diff)
Fixed calculating min with for elements with floats
Fixes issue #99
Diffstat (limited to 'test/render/test34.htm')
-rw-r--r--test/render/test34.htm14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/render/test34.htm b/test/render/test34.htm
new file mode 100644
index 00000000..34586732
--- /dev/null
+++ b/test/render/test34.htm
@@ -0,0 +1,14 @@
+<!--
+Test for issue #99
+-->
+<table style="float: right; border: 1px solid black">
+ <tr>
+ <td style="float: right" width="100%">Should be on right side</td>
+ </tr>
+</table>
+<div style="clear: both"></div>
+<table style="float: left; border: 1px solid black">
+ <tr>
+ <td style="float: left" width="100%">Should be on left side</td>
+ </tr>
+</table>