blob: 2713a3f6873d8cc0e67b16d54d53fb9bdb434b4b [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Test Compopnent</title>
</head>
<body>
<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>
</body>
</html>