Files
polymer/test/smoke/custom-reify.html
2015-06-04 17:56:09 -07:00

63 lines
1.4 KiB
HTML

<!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
-->
<script src="../../../webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="../../polymer.html">
<body>
<style is="custom-style">
:root {
--mood1: orange;
--mood: var(--mood1);
/* --mood: yellow; */
}
</style>
<style is="custom-style">
.zonk {
--mood1: red;
}
.bar {
--mood1: blue;
}
</style>
<x-test class="zonk"></x-test>
<x-test class="bar"></x-test>
<dom-module id="x-test">
<style>
.mood {
/* background: var(--mood1, --mood); */
background: var(--mood);
}
</style>
<template>
<div class="mood">Mood</div>
</template>
<script>
addEventListener('HTMLImportsLoaded', function() {
Polymer({
is: 'x-test'
});
});
</script>
</dom-module>
</body>