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

Side by Side Diff: test/data/input/component_field_2way_test.html

Issue 11412285: New pub release - changes to comply with new SDK. (Closed) Base URL: git@github.com:dart-lang/dart-web-components.git@master
Patch Set: Created 8 years 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
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3 Copyright (c) 2012, 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 lang="en"> 7 <html lang="en">
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 10 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
(...skipping 25 matching lines...) Expand all
36 <script type="application/dart"> 36 <script type="application/dart">
37 import 'dart:html'; 37 import 'dart:html';
38 import 'package:unittest/unittest.dart'; 38 import 'package:unittest/unittest.dart';
39 import 'package:web_components/web_components.dart'; 39 import 'package:web_components/web_components.dart';
40 40
41 var data = ['hello', 'world']; 41 var data = ['hello', 'world'];
42 main() { 42 main() {
43 window.setTimeout(() { 43 window.setTimeout(() {
44 var actual = query('#actual'); 44 var actual = query('#actual');
45 var greet = query('#greet'); 45 var greet = query('#greet');
46 expect(actual.innerHTML, 'hello world'); 46 expect(actual.innerHtml, 'hello world');
47 greet.xtag.changeStuff(); 47 greet.xtag.changeStuff();
48 dispatch(); 48 dispatch();
49 expect(actual.innerHTML, contains('Yo dawg I heard')); 49 expect(actual.innerHtml, contains('Yo dawg I heard'));
50 window.postMessage('done', '*'); 50 window.postMessage('done', '*');
51 }, 0); 51 }, 0);
52 } 52 }
53 </script> 53 </script>
54 </body> 54 </body>
55 </html> 55 </html>
OLDNEW
« no previous file with comments | « test/data/input/bind_hyphenated_attribute_test.html ('k') | test/data/input/dom_accessor_binding2_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698