Skip to content

Instantly share code, notes, and snippets.

@frankiefu
Created September 19, 2014 18:12
Show Gist options
  • Save frankiefu/41cb77859581a671c492 to your computer and use it in GitHub Desktop.
Save frankiefu/41cb77859581a671c492 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<title></title>
<script src="../../../platform/platform.js"></script>
<link rel="import" href="../../polymer.html">
</head>
<body>
<polymer-element name="x-foo" noscript>
<template>x-foo</template>
</polymer-element>
<polymer-element name="x-bar">
<template>x-bar</template>
</polymer-element>
<polymer-element name="x-baz" extends="x-bar">
<template>x-baz</template>
</polymer-element>
<x-foo></x-foo>
<x-bar></x-bar>
<x-baz></x-baz>
<x-zot></x-zot>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment