summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-values/minmax-length-percent-invalid.html
blob: ee086ef269d07bf6b0db5d1306a0f24af0ad8fab (plain)
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
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-values-4/#comp-func">
<link rel="help" href="https://drafts.csswg.org/css-values-4/#mixed-percentages">
<link rel="help" href="https://drafts.csswg.org/css-values-4/#calc-type-checking">
<link rel="author" title="Xiaocheng Hu" href="mailto:xiaochengh@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../support/parsing-testcommon.js"></script>
<script>
function test_invalid_length_percent(value) {
  test_invalid_value('margin-left', value);
}

// Type checking only. Syntax checking is done by other test files.
// <length-percentage> accepts mixing lengths and percentages only.
test_invalid_length_percent('min(1px, 0)');
test_invalid_length_percent('min(1px, 0s)');
test_invalid_length_percent('min(1px, 0Hz)');
test_invalid_length_percent('min(1px, 0dpi)');
test_invalid_length_percent('min(1px, 0fr)');
test_invalid_length_percent('min(1%, 0)');
test_invalid_length_percent('min(1%, 0s)');
test_invalid_length_percent('min(1%, 0Hz)');
test_invalid_length_percent('min(1%, 0dpi)');
test_invalid_length_percent('min(1%, 0fr)');
test_invalid_length_percent('max(1px, 0)');
test_invalid_length_percent('max(1px, 0s)');
test_invalid_length_percent('max(1px, 0Hz)');
test_invalid_length_percent('max(1px, 0dpi)');
test_invalid_length_percent('max(1px, 0fr)');
test_invalid_length_percent('max(1%, 0)');
test_invalid_length_percent('max(1%, 0s)');
test_invalid_length_percent('max(1%, 0Hz)');
test_invalid_length_percent('max(1%, 0dpi)');
test_invalid_length_percent('max(1%, 0fr)');
</script>