Re: [csswg-drafts] [css-text] cursive shaping breaks and typographic characters

It should be possible, I think, to use CGJ to prevent normalization. This works in Firefox; the first mark is not colored because of the normalization, but the second is colored, and both are correctly positioned, but in Chrome though the mark is always colored, its position is off:
```html
<html>
  <body>
    <p style="font-size: 100pt">
      w<span style="color: red">&#x0300;</span>
      w<span style="color: red">&#x034F;&#x0300;</span>
    </p>
  </body>
</html>
```

![Firefox](https://user-images.githubusercontent.com/93914/48397917-efefa180-e727-11e8-89ba-a945b3c2ee3a.png)
![Chrome](https://user-images.githubusercontent.com/93914/48397964-1dd4e600-e728-11e8-9bb6-77ad821e2680.png)

-- 
GitHub Notification of comment by khaledhosny
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/699#issuecomment-438167082 using your GitHub account

Received on Tuesday, 13 November 2018 07:41:38 UTC