1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Logical Properties and Values: inset sets longhands</title>
<link rel="help" href="https://drafts.csswg.org/css-logical/#propdef-inset">
<meta name="assert" content="inset supports the full grammar '<'top'>{1,4}'.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/shorthand-testcommon.js"></script>
</head>
<body>
<script>
test_shorthand_value('inset', '1px 2px 3px 4px', {
'top': '1px',
'right': '2px',
'bottom': '3px',
'left': '4px'
});
test_shorthand_value('inset', '1px 2px 3px', {
'top': '1px',
'right': '2px',
'bottom': '3px',
'left': '2px'
});
test_shorthand_value('inset', '1px 2px', {
'top': '1px',
'right': '2px',
'bottom': '1px',
'left': '2px'
});
test_shorthand_value('inset', '1px', {
'top': '1px',
'right': '1px',
'bottom': '1px',
'left': '1px'
});
</script>
</body>
</html>
|