Bug 1435464 - Allow <html:img/> in Fluent DOM Overlays. r?stas draft
authorZibi Braniecki <zbraniecki@mozilla.com>
Fri, 02 Feb 2018 18:06:20 -0800
changeset 751266 0b202322bafb6a9841d80bd2dcbaa47b2eb9c753
parent 750839 fea9e610ec9d550f2aad41d0d83cf02f485460c4
push id97929
push userbmo:gandalf@aviary.pl
push dateMon, 05 Feb 2018 22:49:58 +0000
reviewersstas
bugs1435464
milestone60.0a1
Bug 1435464 - Allow <html:img/> in Fluent DOM Overlays. r?stas MozReview-Commit-ID: 5XmEBWCsHll
intl/l10n/DOMLocalization.jsm
--- a/intl/l10n/DOMLocalization.jsm
+++ b/intl/l10n/DOMLocalization.jsm
@@ -29,17 +29,20 @@ const reOverlay = /<|&#?\w+;/;
  * The list of elements that are allowed to be inserted into a localization.
  *
  * Source: https://www.w3.org/TR/html5/text-level-semantics.html
  */
 const LOCALIZABLE_ELEMENTS = {
   'http://www.w3.org/1999/xhtml': [
     'a', 'em', 'strong', 'small', 's', 'cite', 'q', 'dfn', 'abbr', 'data',
     'time', 'code', 'var', 'samp', 'kbd', 'sub', 'sup', 'i', 'b', 'u',
-    'mark', 'ruby', 'rt', 'rp', 'bdi', 'bdo', 'span', 'br', 'wbr'
+    'mark', 'ruby', 'rt', 'rp', 'bdi', 'bdo', 'span', 'br', 'wbr',
+
+    // Elements below were manually selected for inclusion
+    'img',
   ],
 };
 
 const LOCALIZABLE_ATTRIBUTES = {
   'http://www.w3.org/1999/xhtml': {
     global: ['title', 'aria-label', 'aria-valuetext', 'aria-moz-hint'],
     a: ['download'],
     area: ['download', 'alt'],