I am bit confused about polymer element attributes and property.
<!doctype>
<html>
<head>
<script src="/components/platform/platform.js"></script>
<link rel="import" href="/components/polymer/polymer.html">
<link rel="import" href="/components/paper-item/paper-item.html">
</head>
<body fullbleed unresolved>
<polymer-element name="test-element" attributes="Test test">
<template>
<paper-item label="Test = {{Test}}, test = {{test}}"></paper-item>
</template>
<script>
Polymer("test-element", {});
</script>
</polymer-element>
<test-element Test="t1" test="t2"></test-element>
<test-element test="t2" Test="t1"></test-element>
</body>
</html>