forked from mirrors/gecko-dev
Automatic update from web-platform-tests [text-box-trim] add parser for text-box-edge The property is defined in https://drafts.csswg.org/css-inline-3/#text-edges. Now we're going to allow the following rule: leading | [ text | cap | ex ] [ text | alphabetic ]? ideographic and ideographic-ink are not implemented yet. Bug: 41494590 Change-Id: I50a3111da0a8fd9f353494dfcca40e4836ba8520 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5237969 Commit-Queue: Lingqi Chi <lingqi@chromium.org> Reviewed-by: Koji Ishii <kojii@chromium.org> Cr-Commit-Position: refs/heads/main@{#1265659} -- wpt-commits: 88803cebf503aa02f759a63fcccff4a55b2888f7 wpt-pr: 44221
26 lines
1.2 KiB
HTML
26 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<title>Tests parsing of the text-box-edge property</title>
|
|
<link rel="author" title="Google LLC" href="https://www.google.com/">
|
|
<link rel="help" href="https://drafts.csswg.org/css-inline-3/#text-edges">
|
|
<meta name="assert" content="text-box-edge supports the full grammar leading | [ text | cap | ex | ideographic | ideographic-ink ] [ text | alphabetic | ideographic | ideographic-ink ]">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/css/support/parsing-testcommon.js"></script>
|
|
|
|
<script>
|
|
// invalid keyword
|
|
test_invalid_value('text-box-edge', 'auto');
|
|
test_invalid_value('text-box-edge', 'auto leading');
|
|
test_invalid_value('text-box-edge', 'leading auto');
|
|
|
|
// invalid grammar
|
|
test_invalid_value('text-box-edge', 'alphabetic');
|
|
test_invalid_value('text-box-edge', 'alphabetic text');
|
|
test_invalid_value('text-box-edge', 'text cap');
|
|
test_invalid_value('text-box-edge', 'text ex');
|
|
test_invalid_value('text-box-edge', 'leading leading');
|
|
test_invalid_value('text-box-edge', 'leading text');
|
|
test_invalid_value('text-box-edge', 'text leading');
|
|
test_invalid_value('text-box-edge', 'text text text');
|
|
|
|
</script>
|