Summary: | `ruby` test case is not working similar to other web browsers | ||||||
---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Ahmad Saleem <ahmad.saleem792> | ||||
Component: | Layout and Rendering | Assignee: | Nobody <webkit-unassigned> | ||||
Status: | NEW --- | ||||||
Severity: | Normal | CC: | bfulgham, fantasai.bugs, karlcow, simon.fraser, vitor.roriz, webkit-bug-importer, zalan | ||||
Priority: | P2 | Keywords: | BrowserCompat, InRadar | ||||
Version: | WebKit Nightly Build | ||||||
Hardware: | Unspecified | ||||||
OS: | Unspecified | ||||||
URL: | https://www.ghibli.jp/shuppan/np/013521/ | ||||||
Attachments: |
|
Description
Ahmad Saleem
2024-08-21 10:18:52 PDT
This is also a real webcompat issue. https://www.ghibli.jp/shuppan/np/013521/ This makes <ruby> not ruby anymore. The code right now on the site is ``` <dd> シャーロック・ホームズ全事件(いしいひさいち)<br> 名前のない<ruby>事件<rt>ヤマ</rt></ruby>~CASE WITH NO NAME~</dd> ``` The code for testing: data:text/html,<!doctype html><title>ruby</title><meta charset='utf-8'><p>名前のない<ruby style="display:inline">事件<rt>ヤマ</rt></ruby></p> On Safari, the characters ヤマ disappear On Chrome and Firefox, they are put after 事件 Without display: inline, the normal ruby layout is on all browsers, aka ヤ マ 事件 |