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

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

Issue 507653004: update polymer to 0.3.5 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: updating pubspecs and changelogs to reflect breaking change with bug in web_components Created 6 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 3 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
4 for details. All rights reserved. Use of this source code is governed by a 4 for details. All rights reserved. Use of this source code is governed by a
5 BSD-style license that can be found in the LICENSE file. 5 BSD-style license that can be found in the LICENSE file.
6 --> 6 -->
7 <html> 7 <html>
8 <!--polymer-test: this comment is needed for test_suite.dart--> 8 <!--polymer-test: this comment is needed for test_suite.dart-->
9 <head> 9 <head>
10 <title>polymer.js interop test</title> 10 <title>polymer.js interop test</title>
(...skipping 29 matching lines...) Expand all
40 40
41 <polymer-element name="js-element2" attributes="qux"> 41 <polymer-element name="js-element2" attributes="qux">
42 <template>QUX:{{qux.baz}}</template> 42 <template>QUX:{{qux.baz}}</template>
43 <script>Polymer('js-element2');</script> 43 <script>Polymer('js-element2');</script>
44 </polymer-element> 44 </polymer-element>
45 45
46 46
47 <polymer-element name="dart-element2"> 47 <polymer-element name="dart-element2">
48 <template> 48 <template>
49 <js-element2 qux="{{quux}}"></js-element2> 49 <js-element2 qux="{{quux}}"></js-element2>
50 <content hidden></content>
Siggi Cherem (dart-lang) 2014/08/26 22:41:39 let's add a <!-- TODO --> here and refer to the gi
jakemac 2014/08/27 14:59:50 Done.
50 </template> 51 </template>
51 </polymer-element> 52 </polymer-element>
52 53
53 <dart-element2> 54 <dart-element2>
54 <js-element baz="123" class="quux"></js-element> 55 <js-element baz="123" class="quux"></js-element>
55 </dart-element2> 56 </dart-element2>
56 57
57 58
58 <polymer-element name="js-element3" attributes="qux"> 59 <polymer-element name="js-element3" attributes="qux">
59 <template>FOOBAR</template> 60 <template>FOOBAR</template>
(...skipping 29 matching lines...) Expand all
89 <js-two-way foobar="{{twoWay}}"></js-two-way> 90 <js-two-way foobar="{{twoWay}}"></js-two-way>
90 </template> 91 </template>
91 </polymer-element> 92 </polymer-element>
92 93
93 <dart-two-way></dart-two-way> 94 <dart-two-way></dart-two-way>
94 95
95 <script type="application/dart" src="js_interop_test.dart"></script> 96 <script type="application/dart" src="js_interop_test.dart"></script>
96 97
97 </body> 98 </body>
98 </html> 99 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698