aboutsummaryrefslogtreecommitdiff
path: root/catapult/third_party/polymer/components/shadycss/tests/no-scopingshim/apply-shim.html
blob: bac2b38c92aa1537e2041b11a247fb049483571f (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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<!doctype html>
<!--
@license
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<html>
<head>

  <meta charset="utf-8">
  <script>
  WCT = {waitFor: function (cb) {HTMLImports.whenReady(cb)}}
  </script>
  <script src="../../node_modules/wct-browser-legacy/browser.js"></script>
  <script src="../../node_modules/@webcomponents/webcomponents-platform/webcomponents-platform.js"></script>
  <script src="../../node_modules/es6-promise/dist/es6-promise.auto.min.js"></script>
  <script src="../../node_modules/@webcomponents/template/template.js"></script>
  <script src="../../node_modules/@webcomponents/html-imports/html-imports.min.js"></script>
  <script src="../../node_modules/@webcomponents/shadydom/shadydom.min.js"></script>
  <script src="../../node_modules/@webcomponents/custom-elements/custom-elements.min.js"></script>
  <script src="../../apply-shim.min.js"></script>
  <script src="../../custom-style-interface.min.js"></script>
  <script src="../module/generated/make-element.js"></script>
  <script src="../module/generated/custom-style-element.js"></script>
  <script src="../module/generated/style-util.js"></script>
  <title>Apply Shim</title>

</head>
<body>
  <template id="basic">
    <style>
    :host {
      --mixin: {
        border: 2px solid black;
      };
    }
    div {
      @apply --mixin;
    }
    </style>
  </template>

  <template id="defaults">
    <style>
    :host {
      --mixin: {
        border: 2px solid black;
      }
    }
    div {
      border: 1px dotted orange;
      @apply --mixin;
    }
    span {
      border: inherit;
      @apply --mixin;
    }
    span {
      border: initial;
      @apply --mixin;
    }
    </style>
  </template>

  <template id="override">
    <style>
    :host {
      --override: {
        padding: 2px;
      };
    }
    :host([override]) {
      --override: {
        border: 2px solid black;
      };
    }
    div {
      @apply --override;
    }
    </style>
  </template>

  <template id="override-with-property">
    <style>
    :root {
      --prop-mixin: {
        border: 2px solid black;
      };
    }
    x-foo {
      --prop-mixin: blue;
      color: var(--prop-mixin);
    }
    div {
      @apply --prop-mixin;
    }
    </style>
  </template>

  <template id="define-with-var">
    <style>
    :root {
      --mixin-var: {
        border: 2px solid black;
      };
    }
    div {
      --mixin-var2: var(--mixin-var);
    }
    span {
      --mixin-var: 20px;
      --variable: var(--mixin-var);
    }
    </style>
  </template>

  <template id="x-element">
    <style>
    :host {
      @apply --my-mixin;
    }
    </style>
  </template>

  <template id="x-element2">
    <custom-style>
    <style>
    html {
      --my-mixin: {
        border: 2px solid black;
      };
    }
    </style>
    </custom-style>
  </template>

  <template id="css-build" css-build="shadow">
    <style>:host{@apply --fake;}</style>
  </template>

  <template id="css-build-comment"><!--css-build:shadow-->
    <style>:host{@apply --fake;}</style>
  </template>

  <script>
  suite('Apply Shim', function() {
    function copy(name) {
      var template = document.querySelector('template#' + name);
      return template.content.cloneNode(true);
    }

    function prep(templateName, elementName) {
      var style = copy(templateName).querySelector('style');
      var ast = window.ShadyCSS.ApplyShim.transformStyle(style, elementName);
      return {style: style, ast: ast};
    }

    suite('Basic', function() {
      var style, ast;
      suiteSetup(function() {
        var info = prep('basic');
        style = info.style;
        ast = info.ast;
        style.textContent = window.StyleUtil.toCssText(ast);
      });

      test('style is transformed', function() {
        var orig = copy('basic').querySelector('style');
        assert.notEqual(style.textContent, orig.textContent);
      });

      test('mixin became custom properties', function() {
        var definition = ast.rules[0];
        var application = ast.rules[1];
        assert.match(definition.cssText, /--mixin_-_border:\s*2px solid black/);
        assert.match(application.cssText, /border:\s*var\(--mixin_-_border\)/);
      });
    });
    suite('Defaults', function() {
      var style, ast; // eslint-disable-line no-unused-vars
      suiteSetup(function() {
        var info = prep('defaults');
        style = info.style;
        ast = info.ast;
      });

      test('properties defined before mixin are used as defaults', function() {
        var application = ast.rules[1];
        assert.match(application.cssText, /border:\s*var\(--mixin_-_border,\s*1px dotted orange\)/);
      });

      test('inherit and initial default values are preserved', function () {
        var application = ast.rules[2];
        assert.match(application.cssText, /border:\s*var\(--mixin_-_border,\s*inherit\)/);
        application = ast.rules[3];
        assert.match(application.cssText, /border:\s*var\(--mixin_-_border,\s*initial\)/);
      });
    });

    suite('override', function() {
      var style, ast; // eslint-disable-line no-unused-vars
      suiteSetup(function() {
        var info = prep('override');
        style = info.style;
        ast = info.ast;
      });

      test('mixin redefinition sets unused properties to initial', function() {
        var def1 = ast.rules[0];
        assert.match(def1.cssText, /--override_-_padding:\s*2px/);
        var def2 = ast.rules[1];
        assert.match(def2.cssText, /--override_-_padding:\s*initial/);
        assert.match(def2.cssText, /--override_-_border:\s*2px solid black/);
      });

      test('mixin application includes all values', function() {
        var application = ast.rules[2];
        assert.match(application.cssText, /padding:\s*var\(--override_-_padding\)/);
        assert.match(application.cssText, /border:\s*var\(--override_-_border\)/);
      });
    });

    suite('override with property', function() {
      var style, ast; // eslint-disable-line no-unused-vars
      suiteSetup(function() {
        var info = prep('override-with-property');
        style = info.style;
        ast = info.ast;
      });

      test('mixin definition defers to property definition', function() {
        var def = ast.rules[1];
        assert.notMatch(def.cssText, /border:\s*var\(--prop-mixin_-_border\)/);
      });

      test('mixin can still be used by other parts of the page', function() {
        var def = ast.rules[2];
        assert.match(def.cssText, /border:\s*var\(--prop-mixin_-_border\)/);
      });
    });

    suite('define with var()', function() {
      var style, ast; // eslint-disable-line no-unused-vars
      suiteSetup(function() {
        var info = prep('define-with-var');
        style = info.style;
        ast = info.ast;
      });

      test('mixin-var2 is defined with mixin-var\'s values', function() {
        var def = ast.rules[1];
        assert.match(def.cssText, /--mixin-var2_-_border:\s*var\(--mixin-var_-_border\)/);
      });

      test('var usage of mixin is not removed, preserving override functionality', function() {
        var def = ast.rules[2];
        assert.match(def.cssText, /--variable:\s*var\(--mixin-var\)/);
      });
    });

    suite('invalidation on new definitions', function() {
      var style, ast, element;
      suiteSetup(function() {
        makeElement('x-element');
        element = document.createElement('x-element');
        document.body.appendChild(element);
        style = element.shadowRoot ? element.shadowRoot.querySelector('style') : document.head.querySelector('style[scope=x-element]');
      });

      test('element initially has no definition', function() {
        var ast = window.StyleUtil.rulesForStyle(style);
        assert.equal(ast.rules[0].cssText, ';');
      });

      test('Revalidating Apply Shim on element template fills in properties', function() {
        var nodes = copy('x-element2');
        document.body.appendChild(nodes);
        window.ShadyCSS.styleDocument();
        var ast = window.StyleUtil.rulesForStyle(style);
        assert.match(ast.rules[0].cssText, /border:\s*var\(--my-mixin_-_border\)/);
      });
    });

    test('templates with "css-build" will not be processed by ApplyShim', function() {
      makeElement('css-build');
      const template = document.querySelector('template#css-build');
      assert.equal(template._styleAst, undefined);
      const style = template.content.querySelector('style');
      assert.match(style.textContent.trim(), /:host\s*{\s*@apply --fake;\s*}/);
    });

    test('templates with "css-build" comment will not be processed by ApplyShim', function () {
      const template = document.querySelector('template#css-build-comment');
      const buildComment = template.content.firstChild;
      assert.instanceOf(buildComment, Comment, 'first node in template content should be a Comment');
      makeElement('css-build-comment');
      assert.equal(template._styleAst, undefined);
      const style = template.content.querySelector('style');
      assert.match(style.textContent.trim(), /:host\s*{\s*@apply --fake;\s*}/);
      assert.equal(buildComment.parentNode, null, 'build comment should be removed');
    });
  });
  </script>
</body>
</html>