Re: RFR: 8304041: [WebView] Text on the left and right of emoji is not visible

2023-06-24 Thread yosbits
On Thu, 6 Apr 2023 20:00:01 GMT, Phil Race wrote: > This fixes a problem with mixing Emoji and regular text in Webview. > The Prism implementation expects that Emoji will not be in the same call to > drawString as regular glyphs, > since they need very different handling. > This fix breaks up

Re: RFR: 8304041: [WebView] Text on the left and right of emoji is not visible

2023-05-22 Thread Kevin Rushforth
On Thu, 6 Apr 2023 20:00:01 GMT, Phil Race wrote: > This fixes a problem with mixing Emoji and regular text in Webview. > The Prism implementation expects that Emoji will not be in the same call to > drawString as regular glyphs, > since they need very different handling. > This fix breaks up

Re: RFR: 8304041: [WebView] Text on the left and right of emoji is not visible

2023-04-08 Thread Kevin Rushforth
On Thu, 6 Apr 2023 20:00:01 GMT, Phil Race wrote: > This fixes a problem with mixing Emoji and regular text in Webview. > The Prism implementation expects that Emoji will not be in the same call to > drawString as regular glyphs, > since they need very different handling. > This fix breaks up

RFR: 8304041: [WebView] Text on the left and right of emoji is not visible

2023-04-06 Thread Phil Race
This fixes a problem with mixing Emoji and regular text in Webview. The Prism implementation expects that Emoji will not be in the same call to drawString as regular glyphs, since they need very different handling. This fix breaks up the runs webview hands to Prism. The test program in the bug