| Index: pkg/polymer/test/js_interop_test.html
|
| diff --git a/pkg/polymer/test/js_interop_test.html b/pkg/polymer/test/js_interop_test.html
|
| index dab9c5ca07802ca9918dc52f1e32765e2f7be1d8..d90fd5a32eb5428415fba08ab8bcc31f3883a09b 100644
|
| --- a/pkg/polymer/test/js_interop_test.html
|
| +++ b/pkg/polymer/test/js_interop_test.html
|
| @@ -13,11 +13,13 @@
|
| </head>
|
| <body>
|
|
|
| - <polymer-element name="js-element" attributes="baz">
|
| + <polymer-element name="js-element">
|
| <template>FOOBAR</template>
|
| <script>
|
| Polymer('js-element', {
|
| - baz: 42,
|
| + publish: {
|
| + baz: {value: 42, reflect: true}
|
| + },
|
| aJsMethod: function(inc) {
|
| this.shadowRoot.textContent = this.baz + inc;
|
| },
|
|
|