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

Side by Side Diff: tests/html/custom/entered_left_view_test.dart

Issue 24653006: Adding Element.created constructor (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 library entered_left_view_test; 5 library entered_left_view_test;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:html'; 8 import 'dart:html';
9 import 'dart:js' as js; 9 import 'dart:js' as js;
10 import 'package:unittest/html_individual_config.dart'; 10 import 'package:unittest/html_individual_config.dart';
11 import 'package:unittest/unittest.dart'; 11 import 'package:unittest/unittest.dart';
12 import '../utils.dart'; 12 import '../utils.dart';
13 13
14 var invocations = []; 14 var invocations = [];
15 class Foo extends HtmlElement { 15 class Foo extends HtmlElement {
16 factory Foo() => null; 16 factory Foo() => null;
17 Foo.created() : super.created();
17 18
18 void created() { 19 void createdCallback() {
19 invocations.add('created'); 20 invocations.add('created');
20 } 21 }
21 22
22 void enteredView() { 23 void enteredView() {
23 invocations.add('entered'); 24 invocations.add('entered');
24 } 25 }
25 26
26 void leftView() { 27 void leftView() {
27 invocations.add('left'); 28 invocations.add('left');
28 } 29 }
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 Platform.upgradeCustomElements(div); 238 Platform.upgradeCustomElements(div);
238 invocations = []; 239 invocations = [];
239 document.body.append(div); 240 document.body.append(div);
240 customElementsTakeRecords(); 241 customElementsTakeRecords();
241 expect(invocations, ['entered'], 242 expect(invocations, ['entered'],
242 reason: 'the entered callback should be invoked when inserted into a ' 243 reason: 'the entered callback should be invoked when inserted into a '
243 'document with a view as part of a subtree'); 244 'document with a view as part of a subtree');
244 }); 245 });
245 }); 246 });
246 } 247 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698