Bug 184217
| Summary: | line breaking should be possible between alphanumeric and fullwidth opening punctuation | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | murakami |
| Component: | Text | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED CONFIGURATION CHANGED | ||
| Severity: | Normal | CC: | fantasai.bugs, mmaxfield, webkit-bug-importer, zalan |
| Priority: | P2 | Keywords: | InRadar |
| Version: | Safari 11 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
murakami
Test HTML+CSS at: http://jsbin.com/hobiko/edit?html,css,output
or:
```
<style>
p {
width: 10em;
background: yellow;
}
</style>
<p>あいうえおかきくけa「さしすせそ」</p>
<p>あいうえおかきくけ1「さしすせそ」</p>
```
What is the expected behavior?
Line breaking should occur as follows:
```
あいうえおかきくけa
「さしすせそ」
あいうえおかきくけ1
「さしすせそ」
```
What went wrong?
Line breaking occurs as follows:
```
あいうえおかきくけ
a「さしすせそ」
あいうえおかきくけ
1「さしすせそ」
```
It seems that line breaking is mistakenly prohibited between non-cjk letter or number and fullwidth opening punctuation such as "「".
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Radar WebKit Bug Importer
<rdar://problem/39079754>
fantasai
This seems to be fixed. Murakami-san, please re-open or message me if there still remains any problem.
P.S. Thanks for including the testcase inline, the JSBin is not loading for me, but I could make the testcase with this information. :)
murakami
I reported this bug a long time ago and then forgot about it. I have confirmed that it is now fixed.
alan
Thank you for confirming! (IFC progression)