diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-25 01:25:15 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-01-08 22:16:29 +0100 |
commit | 787905a585ba2ccb80d80c1d52dbea716085ec6a (patch) | |
tree | 135e7caf0431fe7aa3fc0da4623b379f630b5925 /test/html/Makefile.am | |
parent | dbdf01c83e4a0c04cd1ed517eee1ab985c35f909 (diff) |
Add min-width and max-width CSS tests
Diffstat (limited to 'test/html/Makefile.am')
-rw-r--r-- | test/html/Makefile.am | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/test/html/Makefile.am b/test/html/Makefile.am index 467d812e..6a16eeb8 100644 --- a/test/html/Makefile.am +++ b/test/html/Makefile.am @@ -6,11 +6,19 @@ AM_TESTS_ENVIRONMENT = env \ LOG_COMPILER = $(srcdir)/driver.sh TESTS = \ + render/b-div.html \ render/float-img-justify.html \ render/img-aspect-ratio.html \ + render/max-width-body.html \ + render/max-width-div.html \ + render/max-width-html.html \ + render/max-width-nested-div.html \ + render/min-width-body.html \ + render/min-width-div.html \ + render/min-width-html.html \ + render/min-width-nested-div.html \ render/table-thead-tfoot.html \ - render/white-space.html \ - render/b-div.html + render/white-space.html # To be fixed XFAIL_TESTS = \ |