Permalink
Please sign in to comment.
Browse files
ensure path fixup is applied correctly to styles in templates.
- Loading branch information...
Showing
with
40 additions
and 9 deletions.
- +0 −4 src/lib/custom-style.html
- +9 −4 src/lib/style-util.html
- +3 −1 test/unit/custom-style-import.html
- +8 −0 test/unit/custom-style.html
- +1 −0 test/unit/styling-remote-elements.html
- +2 −0 test/unit/styling-remote-module-sheet.html
- +6 −0 test/unit/styling-remote.html
- +11 −0 test/unit/sub/style-import.html
4
src/lib/custom-style.html
13
src/lib/style-util.html
4
test/unit/custom-style-import.html
8
test/unit/custom-style.html
1
test/unit/styling-remote-elements.html
2
test/unit/styling-remote-module-sheet.html
6
test/unit/styling-remote.html
11
test/unit/sub/style-import.html
| @@ -0,0 +1,11 @@ | ||
| +<dom-module id="style-import"> | ||
| + <template> | ||
| + <style> | ||
| + .foo { | ||
| + height: 2px; | ||
| + border: 1px solid orange; | ||
| + background: url(google.png); | ||
| + } | ||
| + </style> | ||
| + </template> | ||
| +</dom-module> |
0 comments on commit
b22f3cd