From 682b1e7027156c0de423c87fe56432e2c81ea356 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Tue, 17 May 2016 15:44:11 -0600 Subject: [PATCH] Fix sandbox attribute for html parser generated iframes See https://developer.mozilla.org/en/docs/Web/HTML/Element/iframe#attr-sandb ox --- core/modules/parsers/htmlparser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/parsers/htmlparser.js b/core/modules/parsers/htmlparser.js index b2528e961..39b0c21df 100644 --- a/core/modules/parsers/htmlparser.js +++ b/core/modules/parsers/htmlparser.js @@ -24,7 +24,7 @@ var HtmlParser = function(type,text,options) { tag: "iframe", attributes: { src: {type: "string", value: src}, - sandbox: {type: "string", value: "sandbox"} + sandbox: {type: "string", value: ""} } }]; };