I have ran into this situation many times before and I still am not able to fix it. When I import core/paper elements downloaded from bower sometime the import will prevent my page from loading so I will end up with a blank screen. I have managed to fix that problem by importing the url to the element instead of bower. I was able to create a simple polymer element consisting of many input texts, but today when I created a simple databindning element my page will not load.
index.html
<!DOCTYPE html>
<html>
<head>
<link rel="import" href="http://www.polymer-project.org/components/polymer/polymer.html">
<link rel="import" href="hello-name.html">
<script src="https://www.polymer-project.org/components/webcomponentsjs/webcomponents.js"></script>
</head>
<body>
<p><hello-name></hello-name><p>
</body>
</html>
hello-name.html
<polymer-element name="hello-name">
<template>
<h1>Hello {{name}}</h1>
<input type="text" value="{{name}}>
</template>
<script>
Polymer('hello-name', {
ready: function() {
this.name = "World";
}
})
</script>
</polymer-element>
<input type="text" value="{{name}}">. Here is a plunker, everything seems to be working just fine - wirlez