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

Side by Side Diff: test/codegen/lib/html/custom/constructor_calls_created_synchronously_test.dart

Issue 1930043002: Add all dart:html tests from the sdk to test/codegen. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: ptal Created 4 years, 7 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
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 library constructor_calls_created_synchronously_test;
6 import 'package:unittest/unittest.dart';
7 import 'package:unittest/html_config.dart';
8 import 'dart:html';
9 import '../utils.dart';
10 import 'dart:mirrors';
11
12 class A extends HtmlElement {
13 static final tag = 'x-a';
14 factory A() => new Element.tag(tag);
15 A.created() : super.created() {
16 ncallbacks++;
17 }
18
19 static int ncallbacks = 0;
20 }
21
22 main() {
23 useHtmlConfiguration();
24
25 // Adapted from Blink's
26 // fast/dom/custom/constructor-calls-created-synchronously test.
27
28 var registered = false;
29 setUp(() {
30 return customElementsReady.then((_) {
31 if (!registered) {
32 registered = true;
33 document.registerElement(A.tag, A);
34 }
35 });
36 });
37
38 test('createdCallback', () {
39 var x = new A();
40 expect(A.ncallbacks, 1);
41 });
42
43 test('clone node', () {
44 A.ncallbacks = 0;
45
46 var a = new A();
47 expect(A.ncallbacks, 1);
48 var b = a.clone(false);
49 expect(A.ncallbacks, 2);
50 expect(b is A, isTrue);
51 });
52
53 test("can extend elements that don't have special prototypes", () {
54 document.registerElement('fancy-section', FancySection,
55 extendsTag: 'section');
56 var fancy = document.createElement('section', 'fancy-section');
57 expect(fancy is FancySection, true, reason: 'fancy-section was registered');
58 expect(fancy.wasCreated, true, reason: 'FancySection ctor was called');
59 });
60 }
61
62 class FancySection extends HtmlElement {
63 bool wasCreated = false;
64 FancySection.created() : super.created() {
65 wasCreated = true;
66 }
67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698