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

Side by Side Diff: pkg/polymer/test/computed_properties_test.html

Issue 723393003: update to polymer js 0.5.1 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: final tweaks Created 6 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <!--polymer-test: this comment is needed for test_suite.dart--> 3 <!--polymer-test: this comment is needed for test_suite.dart-->
4 <head> 4 <head>
5 <title>property to attribute reflection with bind</title> 5 <title>property to attribute reflection with bind</title>
6 <script src="packages/web_components/platform.js"></script>
7 <script src="packages/web_components/dart_support.js"></script>
8 <link rel="import" href="packages/polymer/polymer.html"> 6 <link rel="import" href="packages/polymer/polymer.html">
9 <script src="/root_dart/tools/testing/dart/test_controller.js"></script> 7 <script src="/root_dart/tools/testing/dart/test_controller.js"></script>
10 </head> 8 </head>
11 9
12 <body> 10 <body>
13 <x-foo foo="mee" bar="too" count=3></x-foo> 11 <x-foo foo="mee" bar="too" count=3></x-foo>
14 12
15 <polymer-element name="x-foo" attributes="foo bar count"> 13 <polymer-element name="x-foo" attributes="foo bar count">
16 <template>{{ fooBar }}:{{ fooBarCounted }}</template> 14 <template>{{ fooBar }}:{{ fooBarCounted }}</template>
17 <script type="application/dart" src="computed_properties_test.dart"></scri pt> 15 <script type="application/dart" src="computed_properties_test.dart"></scri pt>
18 </polymer-element> 16 </polymer-element>
19 </body> 17 </body>
20 </html> 18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698