From d8c06eb29366e1063f29995519d5c6810d753253 Mon Sep 17 00:00:00 2001 From: "Davide P. Cervone" Date: Sat, 27 Apr 2013 07:44:45 -0400 Subject: [PATCH] Make MathML fontsize only be allowed if fontsize is 'all' --- unpacked/extensions/Safe.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unpacked/extensions/Safe.js b/unpacked/extensions/Safe.js index 7d5594ddd..824c73aec 100644 --- a/unpacked/extensions/Safe.js +++ b/unpacked/extensions/Safe.js @@ -311,7 +311,7 @@ break; case "fontsize": - value = (ALLOW.fontsize ? mml.fontsize: null); + value = (ALLOW.fontsize === "all" ? mml.fontsize: null); break; case "style":