add 2 small formatting tests for margins and block elements - webdump_tests - Testfiles for webdump
(HTM) git clone git://git.codemadness.org/webdump_tests
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
(DIR) commit 0228b1654f15cfb86988f5553e5d7592a675b9ed
(DIR) parent a4f1e02082e66be29dbb08a1b0ad7b47a9e6d6bc
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Mon, 28 Aug 2023 18:50:32 +0200
add 2 small formatting tests for margins and block elements
Diffstat:
A tests/h1_margin.html | 3 +++
A tests/li_p.html | 8 ++++++++
2 files changed, 11 insertions(+), 0 deletions(-)
---
(DIR) diff --git a/tests/h1_margin.html b/tests/h1_margin.html
@@ -0,0 +1,3 @@
+<h1>test</h1>
+should have one empty line between them
+<h2>test</h2>
(DIR) diff --git a/tests/li_p.html b/tests/li_p.html
@@ -0,0 +1,8 @@
+<ul>
+<li><p>test</p></li>
+</ul>
+
+<ul>
+<li>test
+ <p>test: (This should be on new line)</p></li>
+</ul>