diff options
Diffstat (limited to 'layout/reftests/w3c-css/submitted/text-decor-3/text-emphasis-style-property-010Cc.html')
-rw-r--r-- | layout/reftests/w3c-css/submitted/text-decor-3/text-emphasis-style-property-010Cc.html | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/layout/reftests/w3c-css/submitted/text-decor-3/text-emphasis-style-property-010Cc.html b/layout/reftests/w3c-css/submitted/text-decor-3/text-emphasis-style-property-010Cc.html new file mode 100644 index 000000000..78ded1ca2 --- /dev/null +++ b/layout/reftests/w3c-css/submitted/text-decor-3/text-emphasis-style-property-010Cc.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>CSS Test: text-emphasis, Cc</title> +<link rel="author" title="Xidorn Quan" href="https://www.upsuper.org"> +<link rel="author" title="Mozilla" href="https://www.mozilla.org"> +<link rel="help" href="https://drafts.csswg.org/css-text-decor-3/#text-emphasis-style-property"> +<meta name="assert" content="Emphasis marks should not be rendered for characters in general category Cc"> +<link rel="match" href="text-emphasis-style-property-010-ref.html"> +<p>Pass if there is nothing rendered below:</p> +<div style="color: white; white-space: pre-wrap; text-emphasis: filled circle red"> +<script> + var codepoints = [ + 0x0000, + 0x0001, + 0x0002, + 0x0003, + 0x0004, + 0x0005, + 0x0006, + 0x0007, + 0x0008, + 0x0009, + 0x000A, + 0x000B, + 0x000C, + 0x000D, + 0x000E, + 0x000F, + 0x0010, + 0x0011, + 0x0012, + 0x0013, + 0x0014, + 0x0015, + 0x0016, + 0x0017, + 0x0018, + 0x0019, + 0x001A, + 0x001B, + 0x001C, + 0x001D, + 0x001E, + 0x001F, + 0x007F, + 0x0080, + 0x0081, + 0x0082, + 0x0083, + 0x0084, + 0x0085, + 0x0086, + 0x0087, + 0x0088, + 0x0089, + 0x008A, + 0x008B, + 0x008C, + 0x008D, + 0x008E, + 0x008F, + 0x0090, + 0x0091, + 0x0092, + 0x0093, + 0x0094, + 0x0095, + 0x0096, + 0x0097, + 0x0098, + 0x0099, + 0x009A, + 0x009B, + 0x009C, + 0x009D, + 0x009E, + 0x009F, + ]; + document.write(codepoints.map(function (code) { + return String.fromCodePoint(code); + }).join(' ')); +</script> +</div> |