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

Side by Side Diff: pkg/polymer/test/publish_attributes_test.dart

Issue 182193002: [polymer] interop with polymer-element and polymer.js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import 'dart:html'; 5 import 'dart:html';
6 import 'package:unittest/unittest.dart'; 6 import 'package:unittest/unittest.dart';
7 import 'package:unittest/html_config.dart'; 7 import 'package:unittest/html_config.dart';
8 import 'package:polymer/polymer.dart'; 8 import 'package:polymer/polymer.dart';
9 9
10 // Dart note: unlike JS, you can't publish something that doesn't 10 // Dart note: unlike JS, you can't publish something that doesn't
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 XQux.created() : super.created(); 52 XQux.created() : super.created();
53 } 53 }
54 54
55 main() { 55 main() {
56 initPolymer(); 56 initPolymer();
57 useHtmlConfiguration(); 57 useHtmlConfiguration();
58 58
59 setUp(() => Polymer.onReady); 59 setUp(() => Polymer.onReady);
60 60
61 test('published properties', () { 61 test('published properties', () {
62 published(tag) => (querySelector('polymer-element[name=$tag]') 62 published(tag) => (new Element.tag(tag) as PolymerElement)
63 as PolymerDeclaration).publishedProperties; 63 .declaration.publishedProperties;
64 64
65 expect(published('x-foo'), ['Foo', 'baz']); 65 expect(published('x-foo'), ['Foo', 'baz']);
66 expect(published('x-bar'), ['Foo', 'baz', 'Bar']); 66 expect(published('x-bar'), ['Foo', 'baz', 'Bar']);
67 expect(published('x-zot'), ['Foo', 'baz', 'Bar', 'zot']); 67 expect(published('x-zot'), ['Foo', 'baz', 'Bar', 'zot']);
68 expect(published('x-squid'), ['Foo', 'baz', 'Bar', 'zot', 'squid']); 68 expect(published('x-squid'), ['Foo', 'baz', 'Bar', 'zot', 'squid']);
69 expect(published('x-qux'), ['qux']); 69 expect(published('x-qux'), ['qux']);
70 }); 70 });
71 } 71 }
OLDNEW
« no previous file with comments | « pkg/polymer/test/property_observe_test.html ('k') | pkg/polymer/test/publish_attributes_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698