Title: [291449] trunk/LayoutTests
Revision
291449
Author
[email protected]
Date
2022-03-17 16:41:09 -0700 (Thu, 17 Mar 2022)

Log Message

Make fast/text/emoji-num-glyphs.html more robust
https://bugs.webkit.org/show_bug.cgi?id=238055
<rdar://problem/88842010>

Unreviewed.

U+26F9 PERSON WITH BALL might have a non-emoji glyph. If it has one, and the OS prefers it over the
emoji glyph, then this test will fail. The solution is to use the emoji-style variation selector
to specifically request the emoji form.

* fast/text/emoji-num-glyphs.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (291448 => 291449)


--- trunk/LayoutTests/ChangeLog	2022-03-17 23:34:16 UTC (rev 291448)
+++ trunk/LayoutTests/ChangeLog	2022-03-17 23:41:09 UTC (rev 291449)
@@ -1,3 +1,17 @@
+2022-03-17  Myles C. Maxfield  <[email protected]>
+
+        Make fast/text/emoji-num-glyphs.html more robust
+        https://bugs.webkit.org/show_bug.cgi?id=238055
+        <rdar://problem/88842010>
+
+        Unreviewed.
+
+        U+26F9 PERSON WITH BALL might have a non-emoji glyph. If it has one, and the OS prefers it over the
+        emoji glyph, then this test will fail. The solution is to use the emoji-style variation selector
+        to specifically request the emoji form.
+
+        * fast/text/emoji-num-glyphs.html:
+
 2022-03-17  Alex Christensen  <[email protected]>
 
         PerformanceNavigationTiming Response Start unavailable when using Service Worker Cache

Modified: trunk/LayoutTests/fast/text/emoji-num-glyphs.html (291448 => 291449)


--- trunk/LayoutTests/fast/text/emoji-num-glyphs.html	2022-03-17 23:34:16 UTC (rev 291448)
+++ trunk/LayoutTests/fast/text/emoji-num-glyphs.html	2022-03-17 23:41:09 UTC (rev 291449)
@@ -9,7 +9,7 @@
 <script src=""
 </head>
 <body style="font: 100px Times;">
-<span id="control">&#x26F9;</span>
+<span id="control">&#x26F9;&#xFE0F;</span>
 <span class="testElement">&#x1F468;&zwj;&#x1F466;</span>
 <span class="testElement">&#x1F468;&zwj;&#x1F466;&zwj;&#x1F466;</span>
 <span class="testElement">&#x1F468;&zwj;&#x1F467;</span>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to