Browse Source

修改iframe样式

xyxie 1 year ago
parent
commit
8e56aaff27
1 changed files with 2 additions and 2 deletions
  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")