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

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

Issue 588373003: Update to polymer js version 0.4.1 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 import 'dart:async';
6 import 'dart:html';
7 import 'package:unittest/unittest.dart';
8 import 'package:unittest/html_config.dart';
9 import 'package:polymer/polymer.dart';
10
11 @CustomTag('x-foo')
12 class XFoo extends PolymerElement {
13 @observable String bar = "baz";
14
15 XFoo.created() : super.created();
16 }
17
18 main() => initPolymer().run(() {
19 useHtmlConfiguration();
20
21 setUp(() => Polymer.onReady);
22
23 test('can inject bound html fragments', () {
24 XFoo xFoo = querySelector('x-foo');
25 DivElement injectDiv = xFoo.$['inject'];
26 xFoo.injectBoundHTML('<span>{{bar}}</span>', injectDiv);
Siggi Cherem (dart-lang) 2014/09/23 21:08:53 this is probably going to fail in dart2js unless w
jakemac 2014/09/23 22:15:01 Done.
27 expect(injectDiv.innerHtml, '<span>baz</span>');
28
29 xFoo.bar = 'bat';
30 return new Future(() {}).then((_) {
31 expect(injectDiv.innerHtml, '<span>bat</span>');
32 });
33 });
34 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698