Parcourir la source

修改iframe样式

xyxie il y a 1 an
Parent
commit
8e56aaff27
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      utils/common.go

+ 2 - 2
utils/common.go

@@ -2500,8 +2500,8 @@ func customXssPolicy() (p *bluemonday.Policy) {
 
 	// iframe
 	p.AllowElements("iframe")
-	p.AllowAttrs("width").Matching(bluemonday.Number).OnElements("iframe")
-	p.AllowAttrs("height").Matching(bluemonday.Number).OnElements("iframe")
+	p.AllowAttrs("width").OnElements("iframe")
+	p.AllowAttrs("height").OnElements("iframe")
 	p.AllowAttrs("src").OnElements("iframe")
 	p.AllowAttrs("frameborder").Matching(bluemonday.Number).OnElements("iframe")
 	p.AllowAttrs("allow").Matching(regexp.MustCompile(`[a-z; -]*`)).OnElements("iframe")