diff --git a/src/plugins/webreport/html.py b/src/plugins/webreport/html.py
index 47366ef18..283a8b4bf 100644
--- a/src/plugins/webreport/html.py
+++ b/src/plugins/webreport/html.py
@@ -61,7 +61,10 @@ class Html(list):
if tag[0] == '<':
self += [tag]
self.end = None
- else:
+ else:
+ if tag in ['area','base','br','frame','hr',
+ 'img','input','link','meta','param']:
+ close = False
begin = '<%s%s%s>' % (
tag,
attr,