blob: 3cac57c61227171d99b3b7f43d346499b68e09f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
AM_TESTS_ENVIRONMENT = env \
TOP_BUILDDIR='$(top_builddir)' \
TOP_SRCDIR='$(top_srcdir)' \
BUILDDIR='$(builddir)'
LOG_COMPILER = $(srcdir)/driver.sh
EXTRA_DIST = \
driver.sh \
manual \
render
TESTS = \
render/b-div.html \
render/div-100-percent-with-padding.html \
render/float-img-justify.html \
render/github-infinite-loop.html \
render/hackernews.html \
render/img-aspect-ratio.html \
render/main-style.html \
render/margin-auto.html \
render/max-width-body.html \
render/max-width-div.html \
render/max-width-div-clamp.html \
render/max-width-html.html \
render/max-width-nested-div.html \
render/meta-refresh-0-no-url.html \
render/min-width-body.html \
render/min-width-div-extend.html \
render/min-width-div.html \
render/min-width-html.html \
render/min-width-nested-div.html \
render/span-padding.html \
render/svg-current-color.html \
render/table-max-width.html \
render/table-missing-width-in-one-column.html \
render/table-td-width-percent-img.html \
render/table-td-width-percent.html \
render/table-thead-tfoot.html \
render/white-space.html
# To be fixed
XFAIL_TESTS = \
render/div-100-percent-with-padding.html \
render/float-img-justify.html \
render/github-infinite-loop.html \
render/img-aspect-ratio.html \
render/margin-auto.html \
render/max-width-html.html \
render/min-width-html.html \
render/span-padding.html \
render/table-td-width-percent.html
|