mirror of https://gitlab.com/bashrc2/epicyon
Warn if theme file contains svg script
parent
99065723cb
commit
a312dcae7a
5
tests.py
5
tests.py
|
@ -3451,7 +3451,10 @@ def _testDangerousSVG() -> None:
|
||||||
content = ''
|
content = ''
|
||||||
with open(svgFilename, 'r') as fp:
|
with open(svgFilename, 'r') as fp:
|
||||||
content = fp.read()
|
content = fp.read()
|
||||||
assert not dangerousCSS(content, False)
|
svgDangerous = dangerousCSS(content, False)
|
||||||
|
if svgDangerous:
|
||||||
|
print('svg file contains script: ' + svgFilename)
|
||||||
|
assert not svgDangerous
|
||||||
# deliberately no break - should resursively scan
|
# deliberately no break - should resursively scan
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue