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

Side by Side Diff: tests/html/postmessage_structured_test.dart

Issue 14883008: use .append instead of .nodes.add (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: revert node_test and element_test Created 7 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 | Annotate | Revision Log
« no previous file with comments | « tests/html/node_bindings_test.dart ('k') | tests/html/queryall_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 postmessage_js_test; 5 library postmessage_js_test;
6 import '../../pkg/unittest/lib/unittest.dart'; 6 import '../../pkg/unittest/lib/unittest.dart';
7 import '../../pkg/unittest/lib/html_individual_config.dart'; 7 import '../../pkg/unittest/lib/html_individual_config.dart';
8 import 'dart:html'; 8 import 'dart:html';
9 import 'dart:collection'; // SplayTreeMap 9 import 'dart:collection'; // SplayTreeMap
10 import 'dart:typed_data'; 10 import 'dart:typed_data';
11 import 'utils.dart'; 11 import 'utils.dart';
12 12
13 injectSource(code) { 13 injectSource(code) {
14 final script = new ScriptElement(); 14 final script = new ScriptElement();
15 script.type = 'text/javascript'; 15 script.type = 'text/javascript';
16 script.innerHtml = code; 16 script.innerHtml = code;
17 document.body.nodes.add(script); 17 document.body.append(script);
18 } 18 }
19 19
20 main() { 20 main() {
21 useHtmlIndividualConfiguration(); 21 useHtmlIndividualConfiguration();
22 22
23 go(testName, value) => 23 go(testName, value) =>
24 test(testName, () { 24 test(testName, () {
25 // Round-trip graph from Dart to JavaScript and back. 25 // Round-trip graph from Dart to JavaScript and back.
26 26
27 final JS_CODE = """ 27 final JS_CODE = """
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 var typed_arrays_list = [view_a, array_buffer, view_b]; 143 var typed_arrays_list = [view_a, array_buffer, view_b];
144 144
145 // Note that FF is failing this test because in the sent message: 145 // Note that FF is failing this test because in the sent message:
146 // view_a.buffer == array_buffer 146 // view_a.buffer == array_buffer
147 // But in the response: 147 // But in the response:
148 // view_a.buffer != array_buffer 148 // view_a.buffer != array_buffer
149 go('typed_arrays_list', typed_arrays_list); 149 go('typed_arrays_list', typed_arrays_list);
150 }); 150 });
151 151
152 } 152 }
OLDNEW
« no previous file with comments | « tests/html/node_bindings_test.dart ('k') | tests/html/queryall_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698