Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Unified Diff: pkg/polymer/test/js_interop_test.html

Issue 307793002: update polymer, nodebind, and templatebinding (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: roll Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
},

Powered by Google App Engine
This is Rietveld 408576698