Files
polymer/test/unit/styling-remote-module-sheet.html
Steven Orvell a16ada11e5 Fixes #2356: issue a warning and don't throw an exception when a style include cannot be found.
Fixes #2357: include data now comes before any textContent in a style element.
2015-08-26 12:47:05 -07:00

19 lines
345 B
HTML

<link rel="import" href="sub/style-import.html">
<dom-module id="remote-styles">
<template>
<style include="style-import"></style>
<style>
#simple {
border: 3px solid orange;
}
.scoped, [selected] {
border: 4px solid pink;
}
#zazz {
border: 6px solid tomato;
}
</style>
</template>
</dom-module>