use <img> tags instead of <object> tags for svgs
This commit is contained in:
parent
00739632cf
commit
1d8221a321
|
@ -1317,17 +1317,11 @@
|
|||
(if (path? p)
|
||||
(url->string* (path->url (path->complete-path p)))
|
||||
p))])
|
||||
`((,(if svg? 'object 'img)
|
||||
([,(if svg? 'data 'src) ,srcref]
|
||||
`((img
|
||||
([src ,srcref]
|
||||
[alt ,(content->string (element-content e))]
|
||||
,@(if svg?
|
||||
`([type "image/svg+xml"])
|
||||
null)
|
||||
,@sz
|
||||
,@(attribs))
|
||||
,@(if svg?
|
||||
`((param ([name "src"] [value ,srcref])))
|
||||
null)))))]
|
||||
,@(attribs))))))]
|
||||
[(element-style-property-matching e script-property?)
|
||||
=>
|
||||
(lambda (v)
|
||||
|
@ -1496,8 +1490,8 @@
|
|||
(list
|
||||
(add-padding
|
||||
cvt
|
||||
`(object
|
||||
([data ,(install-file "pict.svg" bstr)]
|
||||
`(img
|
||||
([src ,(install-file "pict.svg" bstr)]
|
||||
[type "image/svg+xml"]))))))]
|
||||
[else #f])))
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user