diff options
author | Ascrod <32915892+Ascrod@users.noreply.github.com> | 2019-04-27 08:49:17 -0400 |
---|---|---|
committer | Ascrod <32915892+Ascrod@users.noreply.github.com> | 2019-04-27 08:49:17 -0400 |
commit | 742f5aa24d7f65b14a5c32e2685a89d84613e970 (patch) | |
tree | e3babaa0fe9687daf3704ead45ba555d6a0420c2 /toolkit/components | |
parent | 2db53003e902dcd7a927083648435b49cc61a49b (diff) | |
download | uxp-742f5aa24d7f65b14a5c32e2685a89d84613e970.tar.gz |
Bug 1399616 - add WP emoji styling to reader mode.
Diffstat (limited to 'toolkit/components')
-rw-r--r-- | toolkit/components/reader/ReaderMode.jsm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/toolkit/components/reader/ReaderMode.jsm b/toolkit/components/reader/ReaderMode.jsm index b9b31e29fa..5ba898aec1 100644 --- a/toolkit/components/reader/ReaderMode.jsm +++ b/toolkit/components/reader/ReaderMode.jsm @@ -12,6 +12,7 @@ const { classes: Cc, interfaces: Ci, utils: Cu } = Components; // names so that rules in aboutReader.css can match them. const CLASSES_TO_PRESERVE = [ "caption", + "emoji", "hidden", "invisble", "sr-only", @@ -19,6 +20,7 @@ const CLASSES_TO_PRESERVE = [ "visuallyhidden", "wp-caption", "wp-caption-text", + "wp-smiley", ]; Cu.import("resource://gre/modules/Services.jsm"); |