ec56354306
The new styling algorithm in angular is designed to evaluate host bindings stylinh priority in order of directive evaluation order. This, however, does not work with respect to parent/sub-class directives because sub-class host bindings are run after the parent host bindings but still have priority. This patch ensures that the host styling bindings for parent and sub-class components/directives are executed with respect to the styling algorithm prioritization. Jira Issue: FW-1132 PR Close #29602
20 lines
580 B
JavaScript
20 lines
580 B
JavaScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
/**
|
|
* Blocklist of unit tests from angular/material2 with ivy that are skipped when running on
|
|
* angular/angular. As bugs are resolved, items should be removed from this blocklist.
|
|
*
|
|
* The `notes` section should be used to keep track of specific issues associated with the failures.
|
|
*/
|
|
|
|
// clang-format off
|
|
// tslint:disable
|
|
|
|
window.testBlocklist = {};
|
|
// clang-format on
|