forked from phcode-dev/staging.phcode.dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathregions.css
More file actions
105 lines (81 loc) · 1.47 KB
/
Copy pathregions.css
File metadata and controls
105 lines (81 loc) · 1.47 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* basic tests */
article.content {
flow-into: main;
}
section.layout > div {
flow-from: main;
}
#jeff.content {
flow-into: jeff;
}
#jeff.layout > div {
flow-from: jeff;
}
/* exclude matches inside comments tests */
/*
p.content {
flow-into: carter;
}
p.layout > div {
flow-from: carter;
}
*/
/* exclude matches inside strings tests */
div {
content: "/* p.content { flow-into: carter; } p.layout > div { flow-from: carter; } */";
}
div {
content: "html.content { flow-into: dexter; } html.layout > div { flow-from: dexter; }";
}
/*
div.content {
content: "flow-into: martin;";
}
div.layout > div {
content: "flow-from: martin;";
}
*/
/* multi-line property tests */
#randy.content {
flow-into:
randy
;
}
#randy.layout > div {
flow-from: randy;
}
/* test to exclude duplicates */
#yin.content {
flow-from: ;
flow-into: jeff;
}
#yin.layout > div {
flow-from: jeff;
}
/* flow-from only tests */
#raymond.layout > div {
flow-from: lim;
}
/* underscores and dashes */
#ingo.content {
flow-from: edge-code_now_shipping;
}
/* invalid / ignored flows */
#test364.content {
flow-from: default;
flow-from: none;
flow-from: inherit;
flow-from: auto;
flow-from: initial;
flow-from: content;
flow-from: element;
}
/* colors */
.colorful {
color: ;
background-color: ;
border-left-color: deep;
border-color: rent;
height: ;
color: transparent;
}