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

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

Issue 2899083007: Update DDC html libraries to match SDK (Closed)
Patch Set: Created 3 years, 6 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
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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 'compile_time_constant10_test_none_multi': fail, 107 'compile_time_constant10_test_none_multi': fail,
108 'compile_time_constant_a_test': fail, 108 'compile_time_constant_a_test': fail,
109 'compile_time_constant_b_test': fail, 109 'compile_time_constant_b_test': fail,
110 'compile_time_constant_d_test': fail, 110 'compile_time_constant_d_test': fail,
111 'compile_time_constant_k_test_none_multi': fail, 111 'compile_time_constant_k_test_none_multi': fail,
112 'compile_time_constant_o_test_none_multi': fail, 112 'compile_time_constant_o_test_none_multi': fail,
113 'const_evaluation_test_01_multi': fail, 113 'const_evaluation_test_01_multi': fail,
114 'const_switch_test_02_multi': fail, 114 'const_switch_test_02_multi': fail,
115 'const_switch_test_04_multi': fail, 115 'const_switch_test_04_multi': fail,
116 'constructor12_test': fail, 116 'constructor12_test': fail,
117 'covariant_subtyping_tearoff2_test': fail, 117 'covariant_subtyping_tearoff2_test': fail,
118 'covariant_subtyping_tearoff3_test': fail, 118 'covariant_subtyping_tearoff3_test': fail,
119 'covariant_subtyping_unsafe_call2_test': fail, 119 'covariant_subtyping_unsafe_call2_test': fail,
120 'covariant_subtyping_unsafe_call3_test': fail, 120 'covariant_subtyping_unsafe_call3_test': fail,
121 'custom_await_stack_trace_test': fail, 121 'custom_await_stack_trace_test': fail,
122 'cyclic_type2_test': fail, 122 'cyclic_type2_test': fail,
123 'cyclic_type_test_00_multi': fail, 123 'cyclic_type_test_00_multi': fail,
124 'cyclic_type_test_01_multi': fail, 124 'cyclic_type_test_01_multi': fail,
125 'cyclic_type_test_02_multi': fail, 125 'cyclic_type_test_02_multi': fail,
126 'cyclic_type_test_03_multi': fail, 126 'cyclic_type_test_03_multi': fail,
127 'cyclic_type_test_04_multi': fail, 127 'cyclic_type_test_04_multi': fail,
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 // was https://github.com/dart-lang/sdk/issues/27578, needs triage 489 // was https://github.com/dart-lang/sdk/issues/27578, needs triage
490 'rtc_test': is.chrome('<=55') ? fail : pass, 490 'rtc_test': is.chrome('<=55') ? fail : pass,
491 491
492 // https://github.com/dart-lang/sdk/issues/29071 492 // https://github.com/dart-lang/sdk/issues/29071
493 'serialized_script_value_test': firefox_fail, 493 'serialized_script_value_test': firefox_fail,
494 494
495 'shadow_dom_test': firefox_fail, 495 'shadow_dom_test': firefox_fail,
496 496
497 // was https://github.com/dart-lang/sdk/issues/27578, needs triage 497 // was https://github.com/dart-lang/sdk/issues/27578, needs triage
498 'speechrecognition_test': firefox_fail, 498 'speechrecognition_test': firefox_fail,
499 'svgelement_test': chrome_fail,
500 'text_event_test': firefox_fail, 499 'text_event_test': firefox_fail,
501 500
502 // was https://github.com/dart-lang/sdk/issues/27578, needs triage 501 // was https://github.com/dart-lang/sdk/issues/27578, needs triage
503 'touchevent_test': 'fail', 502 'touchevent_test': 'fail',
504 503
505 'transferables_test': async_unittest, 504 'transferables_test': async_unittest,
506 'transition_event_test': async_unittest, 505 'transition_event_test': async_unittest,
507 'url_test': async_unittest, 506 'url_test': async_unittest,
508 'websocket_test': async_unittest, 507 'websocket_test': async_unittest,
509 'websql_test': async_unittest, 508 'websql_test': async_unittest,
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 920
922 for (let action of unittest_tests) { 921 for (let action of unittest_tests) {
923 try { 922 try {
924 action(); 923 action();
925 } catch (e) { 924 } catch (e) {
926 console.error("Caught error tying to setup test:", e); 925 console.error("Caught error tying to setup test:", e);
927 } 926 }
928 } 927 }
929 }); 928 });
930 }); 929 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698