summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-syntax/var-with-blocks.html
blob: 915a2467e3ada9a8773f2981f309966040ac0fca (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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<!DOCTYPE html>
<title>CSS Syntax: {}-blocks in declaration values</title>
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/9317">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<!-- Standard properties -->

<style id=plain_var>
  .a {
    color: rgb(2, 2, 2);
    color:var(--x); /* Valid */
    background-color:rgb(1, 1, 1);
  }
</style>
<script>
  test(() => {
    let rules = plain_var.sheet.rules;
    assert_equals(rules.length, 1);
    let declarations = rules[0].style;
    assert_equals(declarations.color, 'var(--x)');
    assert_equals(declarations.backgroundColor, 'rgb(1, 1, 1)');
  }, 'Plain var()');
</script>

<style id=whole_value_block>
  .a {
    color: rgb(2, 2, 2);
    color:{var(--x)}; /* Valid */
    background-color:rgb(1, 1, 1);
  }
</style>
<script>
  test(() => {
    let rules = whole_value_block.sheet.rules;
    assert_equals(rules.length, 1);
    let declarations = rules[0].style;
    assert_equals(declarations.color, '{var(--x)}');
    assert_equals(declarations.backgroundColor, 'rgb(1, 1, 1)');
  }, 'Whole-value block with var()');
</script>

<style id=whole_value_block_with_space>
  .a {
    color: rgb(2, 2, 2);
    color: { var(--x) }; /* Valid */
    background-color:rgb(1, 1, 1);
  }
</style>
<script>
  test(() => {
    let rules = whole_value_block_with_space.sheet.rules;
    assert_equals(rules.length, 1);
    let declarations = rules[0].style;
    assert_equals(declarations.color, '{ var(--x) }');
    assert_equals(declarations.backgroundColor, 'rgb(1, 1, 1)');
  }, 'Whole-value block with var() (spaces)');
</script>

<style id=trailing_block>
  .a {
    color: rgb(2, 2, 2);
    color:var(--x) { }; /* Invalid */
    background-color:rgb(1, 1, 1);
  }
</style>
<script>
  test(() => {
    let rules = trailing_block.sheet.rules;
    assert_equals(rules.length, 1);
    let declarations = rules[0].style;
    assert_equals(declarations.color, 'rgb(2, 2, 2)');
    assert_equals(declarations.backgroundColor, 'rgb(1, 1, 1)');
  }, 'Trailing block, leading var()');
</script>

<style id=leading_block>
  .a {
    color: rgb(2, 2, 2);
    color:{ } var(--x); /* Invalid */
    background-color:rgb(1, 1, 1);
  }
</style>
<script>
  test(() => {
    let rules = leading_block.sheet.rules;
    assert_equals(rules.length, 1);
    let declarations = rules[0].style;
    assert_equals(declarations.color, 'rgb(2, 2, 2)');
    assert_equals(declarations.backgroundColor, 'rgb(1, 1, 1)');
  }, 'Leading block, trailing var()');
</script>

<style id=in_block_var_with_trailing_token>
  .a {
    color: rgb(2, 2, 2);
    color:{ var(--x) } A; /* Invalid */
    background-color:rgb(1, 1, 1);
  }
</style>
<script>
  test(() => {
    let rules = in_block_var_with_trailing_token.sheet.rules;
    assert_equals(rules.length, 1);
    let declarations = rules[0].style;
    assert_equals(declarations.color, 'rgb(2, 2, 2)');
    assert_equals(declarations.backgroundColor, 'rgb(1, 1, 1)');
  }, 'In-block var() with trailing token');
</script>

<style id=in_block_var_with_leading_token>
  .a {
    color: rgb(2, 2, 2);
    color:A { var(--x) }; /* Invalid */
    background-color:rgb(1, 1, 1);
  }
</style>
<script>
  test(() => {
    let rules = in_block_var_with_leading_token.sheet.rules;
    assert_equals(rules.length, 1);
    let declarations = rules[0].style;
    assert_equals(declarations.color, 'rgb(2, 2, 2)');
    assert_equals(declarations.backgroundColor, 'rgb(1, 1, 1)');
  }, 'In-block var() with leading token');
</script>

<!-- Custom Properties -->

<style id=plain_var_custom>
  .a {
    --y:var(--x); /* Valid */
  }
</style>
<script>
  test(() => {
    let rules = plain_var_custom.sheet.rules;
    assert_equals(rules.length, 1);
    assert_equals(rules[0].style.getPropertyValue('--y'), 'var(--x)');
  }, 'Plain var() (custom property)');
</script>

<style id=whole_value_block_custom>
  .a {
    --y:{var(--x)}; /* Valid */
  }
</style>
<script>
  test(() => {
    let rules = whole_value_block_custom.sheet.rules;
    assert_equals(rules.length, 1);
    assert_equals(rules[0].style.getPropertyValue('--y'), '{var(--x)}');
  }, 'Whole-value block with var() (custom property)');
</script>

<style id=whole_value_block_with_space_custom>
  .a {
    --y: { var(--x) }; /* Valid */
  }
</style>
<script>
  test(() => {
    let rules = whole_value_block_with_space_custom.sheet.rules;
    assert_equals(rules.length, 1);
    assert_equals(rules[0].style.getPropertyValue('--y'), '{ var(--x) }');
  }, 'Whole-value block with var() (spaces, custom property)');
</script>

<style id=trailing_block_custom>
  .a {
    --y:var(--x) { }; /* Valid */
  }
</style>
<script>
  test(() => {
    let rules = trailing_block_custom.sheet.rules;
    assert_equals(rules.length, 1);
    assert_equals(rules[0].style.getPropertyValue('--y'), 'var(--x) { }');
  }, 'Trailing block, leading var() (custom property)');
</script>

<style id=leading_block_custom>
  .a {
    --y:{ } var(--x); /* Valid */
  }
</style>
<script>
  test(() => {
    let rules = leading_block_custom.sheet.rules;
    assert_equals(rules.length, 1);
    assert_equals(rules[0].style.getPropertyValue('--y'), '{ } var(--x)');
  }, 'Leading block, trailing var() (custom property)');
</script>

<style id=in_block_var_with_trailing_token_custom>
  .a {
    --y:{ var(--x) } A; /* Valid */
  }
</style>
<script>
  test(() => {
    let rules = in_block_var_with_trailing_token_custom.sheet.rules;
    assert_equals(rules.length, 1);
    assert_equals(rules[0].style.getPropertyValue('--y'), '{ var(--x) } A');
  }, 'In-block var() with trailing token (custom property)');
</script>

<style id=in_block_var_with_leading_token_custom>
  .a {
    --y:A { var(--x) }; /* Valid */
  }
</style>
<script>
  test(() => {
    let rules = in_block_var_with_leading_token_custom.sheet.rules;
    assert_equals(rules.length, 1);
    assert_equals(rules[0].style.getPropertyValue('--y'), 'A { var(--x) }');
  }, 'In-block var() with leading token (custom property)');
</script>