aboutsummaryrefslogtreecommitdiff
path: root/test/html/render/white-space.html
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2023-12-30 21:00:22 +0100
committerRodrigo Arias Mallo <rodarima@gmail.com>2023-12-30 22:04:56 +0100
commit95627efadf55c39901928ee730d22de55cdcc209 (patch)
treecdbba90f9eed51ad189d0ddab90ec02d2c985cc1 /test/html/render/white-space.html
parent1711ba895376fef9eb9b5face92118b674db8015 (diff)
Add automatic rendering tests
These tests render a HTML page in Dillo and save a screenshot which is compared with another one rendered by a reference HTML file which doesn't make use of the feature under test. Running these tests require some additional dependencies to run a Xorg server and capture screenshots of the browser, so they are only enabled when configured with the --enable-html-tests option. Additionally, running Dillo and opening local files requires a working file dpi plugin. So, when running the HTML tests it is required that a working dpid server can be launched by Dillo. To do so, Dillo can be first installed to a prefix directory, the dpidrc file copied to ~/.dillo/ and then the DILLOBIN variable set to the path of the dillo binary under test.
Diffstat (limited to 'test/html/render/white-space.html')
-rw-r--r--test/html/render/white-space.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/html/render/white-space.html b/test/html/render/white-space.html
new file mode 100644
index 00000000..abd61c41
--- /dev/null
+++ b/test/html/render/white-space.html
@@ -0,0 +1,24 @@
+<h1>nowrap</h1>
+<div style="white-space: nowrap">
+hallo dillo hallo dillo hallo dillo hallo dillo
+hallo dillo hallo dillo hallo dillo hallo dillo
+</div>
+
+<h1>pre</h1>
+
+<div style="white-space: pre">
+hallo dillo hallo dillo hallo dillo hallo dillo
+hallo dillo hallo dillo hallo dillo hallo dillo
+</div>
+
+<h1>pre-wrap</h1>
+<div style="white-space: pre-wrap">
+hallo dillo hallo dillo hallo dillo hallo dillo
+hallo dillo hallo dillo hallo dillo hallo dillo
+</div>
+
+<h1>pre-line</h1>
+<div style="white-space: pre-line">
+hallo dillo hallo dillo hallo dillo hallo dillo
+hallo dillo hallo dillo hallo dillo hallo dillo
+</div>