Files
sdk/pkg/polymer/example/scoped_style/index.html
T
2013-08-20 22:48:50 +00:00

17 lines
295 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Simple CSS Test</title>
<link rel="import" href="my_test.html">
<script src='packages/polymer/boot.js'></script>
</head>
<body>
<style>
p { color: black;}
</style>
<p>outside of element, should be black</p>
<my-test></my-test>
</body>
</html>