Files
sdk/pkg/polymer/example/scoped_style/my_test.html
T

15 lines
328 B
HTML

<polymer-element name="my-test">
<template>
<style>
p { color: red;}
</style>
<p>Inside element, should be red</p>
</template>
<script type="application/dart">
import 'package:polymer/polymer.dart';
@CustomTag('my-test')
class MyTest extends PolymerElement {}
</script>
</polymer-element>