Bug 184217 - line breaking should be possible between alphanumeric and fullwidth opening punctuation
Summary: line breaking should be possible between alphanumeric and fullwidth opening p...
Status: NEW
Alias: None
Product: WebKit
Classification: Unclassified
Component: Text (show other bugs)
Version: Safari 11
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2018-03-31 19:17 PDT by murakami
Modified: 2018-03-31 20:20 PDT (History)
3 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description murakami 2018-03-31 19:17:25 PDT
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 "「".
Comment 1 Radar WebKit Bug Importer 2018-03-31 20:20:07 PDT
<rdar://problem/39079754>