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

Side by Side Diff: pkg/dev_compiler/test/browser/language_tests.js

Issue 2587203002: Correct handling of cross-frame functions in ddc. (Closed)
Patch Set: Created 4 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 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require'], 5 define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require'],
6 function(dart_sdk, async_helper, expect, unittest, is, require) { 6 function(dart_sdk, async_helper, expect, unittest, is, require) {
7 'use strict'; 7 'use strict';
8 8
9 async_helper = async_helper.async_helper; 9 async_helper = async_helper.async_helper;
10 let minitest = expect.minitest; 10 let minitest = expect.minitest;
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 'history_test': async_unittest, 464 'history_test': async_unittest,
465 'indexeddb_1_test': async_unittest, 465 'indexeddb_1_test': async_unittest,
466 'indexeddb_2_test': async_unittest, 466 'indexeddb_2_test': async_unittest,
467 'indexeddb_3_test': async_unittest, 467 'indexeddb_3_test': async_unittest,
468 'indexeddb_4_test': async_unittest, 468 'indexeddb_4_test': async_unittest,
469 'indexeddb_5_test': async_unittest, 469 'indexeddb_5_test': async_unittest,
470 'input_element_test': 'fail', // was sdk#27578, needs triage 470 'input_element_test': 'fail', // was sdk#27578, needs triage
471 'interactive_test': async_unittest, 471 'interactive_test': async_unittest,
472 'isolates_test': async_unittest, 472 'isolates_test': async_unittest,
473 473
474 // Failing on "identical JS objects should have identical proxies". 474 // 'js_test': 'fail',
Bob Nystrom 2016/12/19 22:23:42 Just delete the line.
Jacob 2016/12/19 22:38:13 doh. done.
475 'js_test': 'fail',
476 'js_interop_1_test': async_unittest, 475 'js_interop_1_test': async_unittest,
477 476
478 // Failing because accessing "zSomeInvalidName" does not throw. 477 // Failing because accessing "zSomeInvalidName" does not throw.
479 'js_typed_interop_test': 'fail', 478 'js_typed_interop_test': 'fail',
480 479
481 // The "typed literal" test fails because the object does not have "_c". 480 // The "typed literal" test fails because the object does not have "_c".
482 'js_util_test': 'fail', 481 'js_util_test': 'fail',
483 'keyboard_event_test': async_unittest, 482 'keyboard_event_test': async_unittest,
484 483
485 'mediasource_test': 'fail', // was sdk#27578, needs triage 484 'mediasource_test': 'fail', // was sdk#27578, needs triage
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 844
846 for (let action of unittest_tests) { 845 for (let action of unittest_tests) {
847 try { 846 try {
848 action(); 847 action();
849 } catch (e) { 848 } catch (e) {
850 console.error("Caught error tying to setup test:", e); 849 console.error("Caught error tying to setup test:", e);
851 } 850 }
852 } 851 }
853 }); 852 });
854 }); 853 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698