diff -r 34716fd837a4 -r be944660c56a wp/wp-includes/js/wp-emoji-loader.js --- a/wp/wp-includes/js/wp-emoji-loader.js Tue Dec 15 15:52:01 2020 +0100 +++ b/wp/wp-includes/js/wp-emoji-loader.js Wed Sep 21 18:19:35 2022 +0200 @@ -115,23 +115,23 @@ return ! isIdentical; case 'emoji': /* - * So easy, even a baby could do it! + * Burning Love: Just a hunk, a hunk of burnin' love. * - * To test for Emoji 13 support, try to render a new emoji: Man Feeding Baby. + * To test for Emoji 13.1 support, try to render a new emoji: Heart on Fire! * - * The Man Feeding Baby emoji is a ZWJ sequence combining 👨 Man, a Zero Width Joiner and 🍼 Baby Bottle. + * The Heart on Fire emoji is a ZWJ sequence combining ❤️ Red Heart, a Zero Width Joiner and 🔥 Fire. * - * 0xD83D, 0xDC68 == Man emoji. + * 0x2764, 0xfe0f == Red Heart emoji. * 0x200D == Zero-Width Joiner (ZWJ) that links the two code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. - * 0xD83C, 0xDF7C == Baby Bottle. + * 0xD83D, 0xDD25 == Fire. * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( - [0xD83D, 0xDC68, 0x200D, 0xD83C, 0xDF7C], - [0xD83D, 0xDC68, 0x200B, 0xD83C, 0xDF7C] + [0x2764, 0xfe0f, 0x200D, 0xD83D, 0xDD25], + [0x2764, 0xfe0f, 0x200B, 0xD83D, 0xDD25] ); return ! isIdentical;