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

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

Issue 2456803004: fixes #27586, prefer context type in generic inference (Closed)
Patch Set: fix Created 3 years, 9 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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 'css_test': async_unittest, 409 'css_test': async_unittest,
410 410
411 // This is failing with a range error, I'm guessing because it's looking 411 // This is failing with a range error, I'm guessing because it's looking
412 // for a stylesheet and the page has none. 412 // for a stylesheet and the page has none.
413 'css_rule_list_test': 'fail', 413 'css_rule_list_test': 'fail',
414 414
415 'custom_element_method_clash_test': async_unittest, 415 'custom_element_method_clash_test': async_unittest,
416 'custom_element_name_clash_test': async_unittest, 416 'custom_element_name_clash_test': async_unittest,
417 'custom_elements_23127_test': async_unittest, 417 'custom_elements_23127_test': async_unittest,
418 'custom_elements_test': async_unittest, 418 'custom_elements_test': async_unittest,
419 'debugger_test': firefox_fail, 419
420 // TODO(jmesserly): investigate the change here; it is likely due to
421 // different reified types affecting the (gigantic) HTML literal
422 'debugger_test': fail, // firefox_fail
420 'element_animate_test': 'unittest', 423 'element_animate_test': 'unittest',
421 424
422 // https://github.com/dart-lang/sdk/issues/27579. 425 // https://github.com/dart-lang/sdk/issues/27579.
423 'element_classes_test': 'fail', 426 'element_classes_test': 'fail',
424 'element_classes_svg_test': 'fail', 427 'element_classes_svg_test': 'fail',
425 428
426 // Failure: 'Expected 56 to be in the inclusive range [111, 160].'. 429 // Failure: 'Expected 56 to be in the inclusive range [111, 160].'.
427 'element_offset_test': 'fail', 430 'element_offset_test': 'fail',
428 431
429 'element_test': async_unittest, 432 'element_test': async_unittest,
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
897 900
898 for (let action of unittest_tests) { 901 for (let action of unittest_tests) {
899 try { 902 try {
900 action(); 903 action();
901 } catch (e) { 904 } catch (e) {
902 console.error("Caught error tying to setup test:", e); 905 console.error("Caught error tying to setup test:", e);
903 } 906 }
904 } 907 }
905 }); 908 });
906 }); 909 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698