-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathinitial-letter-computed.html
More file actions
22 lines (20 loc) · 1.05 KB
/
initial-letter-computed.html
File metadata and controls
22 lines (20 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<title>Tests parsing of the initial-letter property</title>
<link rel="author" title="Google LLC" href="https://www.google.com/">
<link rel="help" href="https://drafts.csswg.org/css-inline-3/#sizing-drop-initials">
<meta name="assert" content="initial-letter supports the full grammar 'normal | <number [1,∞]> <integer [1,∞]> | <number [1,∞]> && [ drop | raise ]?'.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/computed-testcommon.js"></script>
<div id="target"></div>
<div id="scratch"></div>
<script>
test_computed_value('initial-letter', 'normal');
test_computed_value('initial-letter', '1.23');
test_computed_value('initial-letter', '1.23 456');
test_computed_value('initial-letter', '1.23 calc(45.6)', '1.23 46');
test_computed_value('initial-letter', '1.23 drop');
test_computed_value('initial-letter', '1.23 raise');
test_computed_value('initial-letter', 'drop 1.23', '1.23 drop');
test_computed_value('initial-letter', 'raise 1.23', '1.23 raise');
</script>