summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text-decor/text-combine-emphasis.html
blob: 752e335a1f8c53155e1a805aea678523bd8c532c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CSS Text: U+FFFC OBJECT REPLACEMENT CHARACTER presence</title>
<link rel="author" title="Myles C. Maxfield" href="mailto:mmaxfield@apple.com">
<link rel="help" href="https://drafts.csswg.org/css-text-3/">
<link rel="mismatch" href="reference/text-combine-emphasis-notref.html">
<style>
.foo {
  font-size: 100px;
  writing-mode: vertical-lr;
  text-combine-upright: all;
  text-emphasis: filled;
}
</style>
</head>
<body>
This test makes sure that, when <code>text-combine-upright</code> and <code>text-emphasis</code> are used together, the emphasis mark doesn't disappear. The test passes if you see an emphasis mark to the right of the letter X below.
<p class="foo">X</p>
</body>
</html>