| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Nikita Vasilyev. All rights reserved. | 2 * Copyright (C) 2010 Nikita Vasilyev. All rights reserved. |
| 3 * Copyright (C) 2010 Joseph Pecoraro. All rights reserved. | 3 * Copyright (C) 2010 Joseph Pecoraro. All rights reserved. |
| 4 * Copyright (C) 2010 Google Inc. All rights reserved. | 4 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
| 8 * met: | 8 * met: |
| 9 * | 9 * |
| 10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
| (...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 697 'normal', 'multiply', 'screen', 'overlay', 'darken', 'lighten', 'color-dod
ge', 'color-burn', 'hard-light', | 697 'normal', 'multiply', 'screen', 'overlay', 'darken', 'lighten', 'color-dod
ge', 'color-burn', 'hard-light', |
| 698 'soft-light', 'difference', 'exclusion', 'hue', 'saturation', 'color', 'lu
minosity', 'unset' | 698 'soft-light', 'difference', 'exclusion', 'hue', 'saturation', 'color', 'lu
minosity', 'unset' |
| 699 ] | 699 ] |
| 700 }, | 700 }, |
| 701 'background-blend-mode': { | 701 'background-blend-mode': { |
| 702 values: [ | 702 values: [ |
| 703 'normal', 'multiply', 'screen', 'overlay', 'darken', 'lighten', 'color-dod
ge', 'color-burn', 'hard-light', | 703 'normal', 'multiply', 'screen', 'overlay', 'darken', 'lighten', 'color-dod
ge', 'color-burn', 'hard-light', |
| 704 'soft-light', 'difference', 'exclusion', 'hue', 'saturation', 'color', 'lu
minosity', 'unset' | 704 'soft-light', 'difference', 'exclusion', 'hue', 'saturation', 'color', 'lu
minosity', 'unset' |
| 705 ] | 705 ] |
| 706 }, | 706 }, |
| 707 'caret-color': {values: ['auto']}, |
| 707 }; | 708 }; |
| 708 | 709 |
| 709 // Weight of CSS properties based on their usage from https://www.chromestatus.c
om/metrics/css/popularity | 710 // Weight of CSS properties based on their usage from https://www.chromestatus.c
om/metrics/css/popularity |
| 710 SDK.CSSMetadata.Weight = { | 711 SDK.CSSMetadata.Weight = { |
| 711 'align-content': 57, | 712 'align-content': 57, |
| 712 'align-items': 129, | 713 'align-items': 129, |
| 713 'align-self': 55, | 714 'align-self': 55, |
| 714 'animation': 175, | 715 'animation': 175, |
| 715 'animation-delay': 114, | 716 'animation-delay': 114, |
| 716 'animation-direction': 113, | 717 'animation-direction': 113, |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 956 'widows': 115, | 957 'widows': 115, |
| 957 'width': 268, | 958 'width': 268, |
| 958 'will-change': 74, | 959 'will-change': 74, |
| 959 'word-break': 166, | 960 'word-break': 166, |
| 960 'word-spacing': 157, | 961 'word-spacing': 157, |
| 961 'word-wrap': 197, | 962 'word-wrap': 197, |
| 962 'writing-mode': 41, | 963 'writing-mode': 41, |
| 963 'z-index': 239, | 964 'z-index': 239, |
| 964 'zoom': 200 | 965 'zoom': 200 |
| 965 }; | 966 }; |
| OLD | NEW |