about summary refs log tree commit diff stats
path: root/test/layout/margins_float.html
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2024-04-21 21:26:27 +0200
committerbptato <nincsnevem662@gmail.com>2024-04-21 21:28:45 +0200
commite3d9ee2c6224cd30bf56e24f7988899e0e3985c1 (patch)
tree31116d7d751d058f32bf43313c12673423e8d8be /test/layout/margins_float.html
parentba88f015ea500bcc574b621392c721ef2c9dbcd0 (diff)
downloadchawan-e3d9ee2c6224cd30bf56e24f7988899e0e3985c1.tar.gz
test: add js & layout tests
(Sadly some layout tests still fail.)
Diffstat (limited to 'test/layout/margins_float.html')
-rw-r--r--test/layout/margins_float.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/layout/margins_float.html b/test/layout/margins_float.html
new file mode 100644
index 00000000..1ac7bc94
--- /dev/null
+++ b/test/layout/margins_float.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<style>
+
+* {
+  font-family: monospace,monospace;
+  line-height: 1em;
+  font-size: 18px
+}
+</style>
+<div style="display: inline-block; width: 15ch">
+<div style="margin-bottom: 1em;">wtf?</div>
+<div style="float: right; margin-top: 2em">hi from right</div>
+<div style="margin-left: 2ch; margin-right: 2ch; margin-top: 2em">
+<div style="float: left">
+<div style="display: inline-block">hi from left</div>
+</div>
+<!--<div style="margin-top: 5em">ok</div>-->
+</div>
+<div>
+hi in center
+</div>
+</div>