File: clip-path-shape-parsing.html

package info (click to toggle)
thunderbird 1%3A143.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,703,968 kB
  • sloc: cpp: 7,770,492; javascript: 5,943,842; ansic: 3,918,754; python: 1,418,263; xml: 653,354; asm: 474,045; java: 183,079; sh: 111,238; makefile: 20,410; perl: 14,359; objc: 13,059; yacc: 4,583; pascal: 3,405; lex: 1,720; ruby: 999; exp: 762; sql: 715; awk: 580; php: 436; lisp: 430; sed: 69; csh: 10
file content (64 lines) | stat: -rw-r--r-- 4,152 bytes parent folder | download | duplicates (3)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="help" href="https://drafts.csswg.org/css-shapes-2/#shape-function">
<meta name="assert" content="clip-path supports the full shape() grammar.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
</head>
<body>
<script>
// basic
test_valid_value("clip-path", "shape(from 0px 0px, line to 10px 10px)");
test_valid_value("clip-path", "shape(evenodd from 0px 0px, line to 10px 10px)");
test_valid_value("clip-path", "shape(nonzero from 0px 0px, line to 10px 10px)", "shape(from 0px 0px, line to 10px 10px)");
test_valid_value("clip-path", "shape(  from 0px    0px, line  to 10px  10px     )", "shape(from 0px 0px, line to 10px 10px)");
test_valid_value("clip-path", "shape(from 1em 50%, line to 10px 10px)");
test_valid_value("clip-path", "shape(EvenOdd from 0px 0Px, CLOSE)", "shape(evenodd from 0px 0px, close)");
test_valid_value("clip-path", "shape(from 1ch 50px, line to 10rem 10vh)");
test_valid_value("clip-path", "shape(from 1ch -50px, line to -10% 12px)");

// segment types
test_valid_value("clip-path", "shape(from 10px 10px, move by 10px 5px, line by 20px 40%, close)");
test_valid_value("clip-path", "shape(from 10px 10px, hline by 10px, vline to 5rem)");
test_valid_value("clip-path", "shape(from 10px 10px, vline by 5%, hline to 1vw)");
test_valid_value("clip-path", "shape(from 10px 10px, curve to 50px 20px with 10rem 1%)");
test_valid_value("clip-path", "shape(from 10px 10px, curve to 50px 20px with 10rem 1px / 20vh 1ch)");
test_valid_value("clip-path", "shape(from 10px 10px, curve by 50px 20px with 10rem 1px / 20vh 1ch)");
test_valid_value("clip-path", "shape(from 10px 10px, smooth to 50px 20px with 10rem 1%)");
test_valid_value("clip-path", "shape(from 10px 10px, smooth to 50px 1pt)");
test_valid_value("clip-path", "shape(from 10px 10px, arc to 50px 1pt of 10px 10px)");
test_valid_value("clip-path", "shape(from 10px 10px, arc to 50px 1pt of 10%)");
test_valid_value("clip-path", "shape(from 10px 10px, arc to 50px 1pt of 10px 10px small rotate 0deg)", "shape(from 10px 10px, arc to 50px 1pt of 10px 10px)");
test_valid_value("clip-path", "shape(from 10px 10px, arc to 50px 1pt of 10px small rotate 0deg)", "shape(from 10px 10px, arc to 50px 1pt of 10px)");
test_valid_value("clip-path", "shape(from 10% 1rem, arc to 50px 1pt of 20% cw large rotate 25deg)", "shape(from 10% 1rem, arc to 50px 1pt of 20% cw large rotate 25deg)");
test_valid_value("clip-path", "shape(evenodd from 0px 0px, close)");

// arc with wrong order
test_invalid_value("clip-path", "shape(from 10% 1rem, arc of 20% 1pt to 50px cw large rotate 25deg)");
test_invalid_value("clip-path", "shape(from 10% 1rem, arc cw to 50px of 20% 1pt large rotate 25deg)");
test_invalid_value("clip-path", "shape(from 10% 1rem, arc rotate 25deg to 50px 1pt of 20% cw large )");

// nonsense
test_invalid_value("clip-path", "shape(evenodd from 0px 0px, close path)");
test_invalid_value("clip-path", "shape(nonzero, from 0px 0px, line to 10px 10px)");
test_invalid_value("clip-path", "shape(from 10px 10px, curve to 50px 20px via 10rem)");
test_invalid_value("clip-path", "shape(from 10px 10px, curve to 50px 20px via 10rem 1% 12px)");
test_invalid_value("clip-path", "shape(from 10px 10px, hline byy 10px, vline to 5rem)");
test_invalid_value("clip-path", "shape(from 10px 10px, vline by 5% hline by 1vw");
test_invalid_value("clip-path", "shape(from 10px 10px, smooth to 50px 20px via 10rem)");
test_invalid_value("clip-path", "shape(from 10px 10px, smooth to 50px 20px via 10rem 2px 2pt)");
test_invalid_value("clip-path", "shape()");
test_invalid_value("clip-path", "shape(from)");
test_invalid_value("clip-path", "shape(from 0px)");
test_invalid_value("clip-path", "shape(from 0px 20px,)");
test_invalid_value("clip-path", "shape(close)");
test_invalid_value("clip-path", "shape(nonzero, close)");
test_invalid_value("clip-path", "shape(from 0px 10px)");
test_invalid_value("clip-path", "shape(allkindsofnonsense)");
test_invalid_value("clip-path", "shape(arc)");
</script>
</body>
</html>