Skip to content

Commit 7f001e1

Browse files
text-emphasis: Do not paint emphasis marks on punctuations
* Do not paint emphasis marks on punctuations * Do not use IDEOGRAPHIC FULL STOP for text-combine placeholder It's a punctuation. Use HIRAGANA LETTER A instead. * Do not paint emphasis marks on generated ellipsis symbols just in case It's always a punctuation now. But we might support arbitrary string in the future. * Update text-emphasis-punctuation-1.html so that it uses Ahem font Without this change, the test had pixel glitches on Chromium. The new behavior matches to Firefox. https://drafts.csswg.org/css-text-decor/#text-emphasis-style-property Bug: 359420112 Change-Id: If93ef6190e739a0cf64d3becb24c41191dbe1100 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6108987 Commit-Queue: Koji Ishii <[email protected]> Auto-Submit: Kent Tamura <[email protected]> Reviewed-by: Koji Ishii <[email protected]> Cr-Commit-Position: refs/heads/main@{#1400253}
1 parent e8ba63b commit 7f001e1

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

css/css-text-decor/text-emphasis-punctuation-1-ref.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
<meta charset="utf-8">
33
<title>CSS text decoration test: emphasis marks and punctuation</title>
44

5+
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
56
<style>
7+
.ahem { font-family: Ahem; }
68
span { text-emphasis: filled circle; }
79
</style>
810

911
<p>The punctuation should <b>not</b> have emphasis marks:</p>
10-
<p><span>Abc</span> (<span>def</span>) <span>gh</span>? <span>Ijk</span>.
12+
<p class="ahem"><span>Abc</span> (<span>def</span>) <span>gh</span>? <span>Ijk</span>.
1113
<span>Lm</span>, <span>n</span>-<span>op</span>!
1214
[<span>Qrst</span><span>uv</span>] <span>wx</span>/<span>yz</span>.</p>

css/css-text-decor/text-emphasis-punctuation-1.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
<link rel="help" href="https://drafts.csswg.org/css-text-decor/#text-emphasis-style-property">
66
<meta name="assert" content="emphasis marks are not drawn for punctuation (with a small set of exceptions)">
77

8+
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
89
<style>
9-
.emph { text-emphasis: filled circle; }
10+
.emph { text-emphasis: filled circle; font-family: Ahem; }
1011
</style>
1112

1213
<p>The punctuation should <b>not</b> have emphasis marks:</p>

0 commit comments

Comments
 (0)