chrome-devtools-frontend 1.0.1022611 → 1.0.1023108
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/front_end/generated/InspectorBackendCommands.js +1 -1
 - package/front_end/generated/SupportedCSSProperties.js +2 -2
 - package/front_end/generated/protocol.ts +4 -0
 - package/front_end/models/javascript_metadata/NativeFunctions.js +22 -32
 - package/front_end/ui/legacy/components/data_grid/dataGrid.css +2 -2
 - package/package.json +1 -1
 
| 
         @@ -567,7 +567,7 @@ export function registerCommands(inspectorBackend) { 
     | 
|
| 
       567 
567 
     | 
    
         
             
              inspectorBackend.registerCommand(
         
     | 
| 
       568 
568 
     | 
    
         
             
                  'CSS.getMatchedStylesForNode', [{'name': 'nodeId', 'type': 'number', 'optional': false}], [
         
     | 
| 
       569 
569 
     | 
    
         
             
                    'inlineStyle', 'attributesStyle', 'matchedCSSRules', 'pseudoElements', 'inherited', 'inheritedPseudoElements',
         
     | 
| 
       570 
     | 
    
         
            -
                    'cssKeyframesRules'
         
     | 
| 
      
 570 
     | 
    
         
            +
                    'cssKeyframesRules', 'parentLayoutNodeId'
         
     | 
| 
       571 
571 
     | 
    
         
             
                  ]);
         
     | 
| 
       572 
572 
     | 
    
         
             
              inspectorBackend.registerCommand('CSS.getMediaQueries', [], ['medias']);
         
     | 
| 
       573 
573 
     | 
    
         
             
              inspectorBackend.registerCommand(
         
     | 
| 
         @@ -333,7 +333,7 @@ export const generatedProperties = [ 
     | 
|
| 
       333 
333 
     | 
    
         
             
              {'name': 'contain-intrinsic-width', 'keywords': ['auto', 'none']},
         
     | 
| 
       334 
334 
     | 
    
         
             
              {'longhands': ['container-name', 'container-type'], 'name': 'container'},
         
     | 
| 
       335 
335 
     | 
    
         
             
              {'name': 'container-name', 'keywords': ['none']},
         
     | 
| 
       336 
     | 
    
         
            -
              {'name': 'container-type', 'keywords': [' 
     | 
| 
      
 336 
     | 
    
         
            +
              {'name': 'container-type', 'keywords': ['normal', 'inline-size', 'size', 'style']},
         
     | 
| 
       337 
337 
     | 
    
         
             
              {'name': 'content'},
         
     | 
| 
       338 
338 
     | 
    
         
             
              {'name': 'content-visibility', 'keywords': ['visible', 'auto', 'hidden', 'hidden-matchable']},
         
     | 
| 
       339 
339 
     | 
    
         
             
              {'name': 'counter-increment', 'keywords': ['none']},
         
     | 
| 
         @@ -952,7 +952,7 @@ export const generatedPropertyValues = { 
     | 
|
| 
       952 
952 
     | 
    
         
             
              'contain-intrinsic-height': {'values': ['auto', 'none']},
         
     | 
| 
       953 
953 
     | 
    
         
             
              'contain-intrinsic-width': {'values': ['auto', 'none']},
         
     | 
| 
       954 
954 
     | 
    
         
             
              'container-name': {'values': ['none']},
         
     | 
| 
       955 
     | 
    
         
            -
              'container-type': {'values': [' 
     | 
| 
      
 955 
     | 
    
         
            +
              'container-type': {'values': ['normal', 'inline-size', 'size', 'style']},
         
     | 
| 
       956 
956 
     | 
    
         
             
              'content-visibility': {'values': ['visible', 'auto', 'hidden', 'hidden-matchable']},
         
     | 
| 
       957 
957 
     | 
    
         
             
              'counter-increment': {'values': ['none']},
         
     | 
| 
       958 
958 
     | 
    
         
             
              'counter-reset': {'values': ['none']},
         
     | 
| 
         @@ -2602,6 +2602,10 @@ export namespace CSS { 
     | 
|
| 
       2602 
2602 
     | 
    
         
             
                 * A list of CSS keyframed animations matching this node.
         
     | 
| 
       2603 
2603 
     | 
    
         
             
                 */
         
     | 
| 
       2604 
2604 
     | 
    
         
             
                cssKeyframesRules?: CSSKeyframesRule[];
         
     | 
| 
      
 2605 
     | 
    
         
            +
                /**
         
     | 
| 
      
 2606 
     | 
    
         
            +
                 * Id of the first parent element that does not have display: contents.
         
     | 
| 
      
 2607 
     | 
    
         
            +
                 */
         
     | 
| 
      
 2608 
     | 
    
         
            +
                parentLayoutNodeId?: DOM.NodeId;
         
     | 
| 
       2605 
2609 
     | 
    
         
             
              }
         
     | 
| 
       2606 
2610 
     | 
    
         | 
| 
       2607 
2611 
     | 
    
         
             
              export interface GetMediaQueriesResponse extends ProtocolResponseWithError {
         
     | 
| 
         @@ -1104,6 +1104,11 @@ export const NativeFunctions = [ 
     | 
|
| 
       1104 
1104 
     | 
    
         
             
                name: 'getFrequencyResponse',
         
     | 
| 
       1105 
1105 
     | 
    
         
             
                signatures: [['frequencyHz','magResponse','phaseResponse']]
         
     | 
| 
       1106 
1106 
     | 
    
         
             
              },
         
     | 
| 
      
 1107 
     | 
    
         
            +
              {
         
     | 
| 
      
 1108 
     | 
    
         
            +
                name: 'json',
         
     | 
| 
      
 1109 
     | 
    
         
            +
                signatures: [['data','?init']],
         
     | 
| 
      
 1110 
     | 
    
         
            +
                receivers: ['Response']
         
     | 
| 
      
 1111 
     | 
    
         
            +
              },
         
     | 
| 
       1107 
1112 
     | 
    
         
             
              {
         
     | 
| 
       1108 
1113 
     | 
    
         
             
                name: 'postMessage',
         
     | 
| 
       1109 
1114 
     | 
    
         
             
                signatures: [['message']],
         
     | 
| 
         @@ -3703,18 +3708,7 @@ export const NativeFunctions = [ 
     | 
|
| 
       3703 
3708 
     | 
    
         
             
              },
         
     | 
| 
       3704 
3709 
     | 
    
         
             
              {
         
     | 
| 
       3705 
3710 
     | 
    
         
             
                name: 'encode',
         
     | 
| 
       3706 
     | 
    
         
            -
                signatures: [['?input']] 
     | 
| 
       3707 
     | 
    
         
            -
                receivers: ['TextEncoder']
         
     | 
| 
       3708 
     | 
    
         
            -
              },
         
     | 
| 
       3709 
     | 
    
         
            -
              {
         
     | 
| 
       3710 
     | 
    
         
            -
                name: 'encode',
         
     | 
| 
       3711 
     | 
    
         
            -
                signatures: [['data']],
         
     | 
| 
       3712 
     | 
    
         
            -
                receivers: ['AudioEncoder']
         
     | 
| 
       3713 
     | 
    
         
            -
              },
         
     | 
| 
       3714 
     | 
    
         
            -
              {
         
     | 
| 
       3715 
     | 
    
         
            -
                name: 'encode',
         
     | 
| 
       3716 
     | 
    
         
            -
                signatures: [['frame','?options']],
         
     | 
| 
       3717 
     | 
    
         
            -
                receivers: ['VideoEncoder']
         
     | 
| 
      
 3711 
     | 
    
         
            +
                signatures: [['?input']]
         
     | 
| 
       3718 
3712 
     | 
    
         
             
              },
         
     | 
| 
       3719 
3713 
     | 
    
         
             
              {
         
     | 
| 
       3720 
3714 
     | 
    
         
             
                name: 'encodeInto',
         
     | 
| 
         @@ -5913,7 +5907,7 @@ export const NativeFunctions = [ 
     | 
|
| 
       5913 
5907 
     | 
    
         
             
                signatures: [['?options']]
         
     | 
| 
       5914 
5908 
     | 
    
         
             
              },
         
     | 
| 
       5915 
5909 
     | 
    
         
             
              {
         
     | 
| 
       5916 
     | 
    
         
            -
                name: ' 
     | 
| 
      
 5910 
     | 
    
         
            +
                name: 'checkVisibility',
         
     | 
| 
       5917 
5911 
     | 
    
         
             
                signatures: [['?options']]
         
     | 
| 
       5918 
5912 
     | 
    
         
             
              },
         
     | 
| 
       5919 
5913 
     | 
    
         
             
              {
         
     | 
| 
         @@ -6799,6 +6793,16 @@ export const NativeFunctions = [ 
     | 
|
| 
       6799 
6793 
     | 
    
         
             
                name: 'DeviceMotionEvent',
         
     | 
| 
       6800 
6794 
     | 
    
         
             
                signatures: [['type','?eventInitDict']]
         
     | 
| 
       6801 
6795 
     | 
    
         
             
              },
         
     | 
| 
      
 6796 
     | 
    
         
            +
              {
         
     | 
| 
      
 6797 
     | 
    
         
            +
                name: 'requestPermission',
         
     | 
| 
      
 6798 
     | 
    
         
            +
                signatures: [['?descriptor']],
         
     | 
| 
      
 6799 
     | 
    
         
            +
                receivers: ['FileSystemHandle']
         
     | 
| 
      
 6800 
     | 
    
         
            +
              },
         
     | 
| 
      
 6801 
     | 
    
         
            +
              {
         
     | 
| 
      
 6802 
     | 
    
         
            +
                name: 'requestPermission',
         
     | 
| 
      
 6803 
     | 
    
         
            +
                signatures: [['?deprecatedCallback']],
         
     | 
| 
      
 6804 
     | 
    
         
            +
                receivers: ['Notification']
         
     | 
| 
      
 6805 
     | 
    
         
            +
              },
         
     | 
| 
       6802 
6806 
     | 
    
         
             
              {
         
     | 
| 
       6803 
6807 
     | 
    
         
             
                name: 'DeviceOrientationEvent',
         
     | 
| 
       6804 
6808 
     | 
    
         
             
                signatures: [['type','?eventInitDict']]
         
     | 
| 
         @@ -6847,16 +6851,6 @@ export const NativeFunctions = [ 
     | 
|
| 
       6847 
6851 
     | 
    
         
             
                name: 'queryPermission',
         
     | 
| 
       6848 
6852 
     | 
    
         
             
                signatures: [['?descriptor']]
         
     | 
| 
       6849 
6853 
     | 
    
         
             
              },
         
     | 
| 
       6850 
     | 
    
         
            -
              {
         
     | 
| 
       6851 
     | 
    
         
            -
                name: 'requestPermission',
         
     | 
| 
       6852 
     | 
    
         
            -
                signatures: [['?descriptor']],
         
     | 
| 
       6853 
     | 
    
         
            -
                receivers: ['FileSystemHandle']
         
     | 
| 
       6854 
     | 
    
         
            -
              },
         
     | 
| 
       6855 
     | 
    
         
            -
              {
         
     | 
| 
       6856 
     | 
    
         
            -
                name: 'requestPermission',
         
     | 
| 
       6857 
     | 
    
         
            -
                signatures: [['?deprecatedCallback']],
         
     | 
| 
       6858 
     | 
    
         
            -
                receivers: ['Notification']
         
     | 
| 
       6859 
     | 
    
         
            -
              },
         
     | 
| 
       6860 
6854 
     | 
    
         
             
              {
         
     | 
| 
       6861 
6855 
     | 
    
         
             
                name: 'truncate',
         
     | 
| 
       6862 
6856 
     | 
    
         
             
                signatures: [['size']]
         
     | 
| 
         @@ -6969,6 +6963,10 @@ export const NativeFunctions = [ 
     | 
|
| 
       6969 
6963 
     | 
    
         
             
                name: 'GamepadEvent',
         
     | 
| 
       6970 
6964 
     | 
    
         
             
                signatures: [['type','?eventInitDict']]
         
     | 
| 
       6971 
6965 
     | 
    
         
             
              },
         
     | 
| 
      
 6966 
     | 
    
         
            +
              {
         
     | 
| 
      
 6967 
     | 
    
         
            +
                name: 'canPlay',
         
     | 
| 
      
 6968 
     | 
    
         
            +
                signatures: [['type']]
         
     | 
| 
      
 6969 
     | 
    
         
            +
              },
         
     | 
| 
       6972 
6970 
     | 
    
         
             
              {
         
     | 
| 
       6973 
6971 
     | 
    
         
             
                name: 'playEffect',
         
     | 
| 
       6974 
6972 
     | 
    
         
             
                signatures: [['type','params']]
         
     | 
| 
         @@ -7726,7 +7724,7 @@ export const NativeFunctions = [ 
     | 
|
| 
       7726 
7724 
     | 
    
         
             
              {
         
     | 
| 
       7727 
7725 
     | 
    
         
             
                name: 'configure',
         
     | 
| 
       7728 
7726 
     | 
    
         
             
                signatures: [['config']],
         
     | 
| 
       7729 
     | 
    
         
            -
                receivers: ['AudioDecoder',' 
     | 
| 
      
 7727 
     | 
    
         
            +
                receivers: ['AudioDecoder','VideoDecoder']
         
     | 
| 
       7730 
7728 
     | 
    
         
             
              },
         
     | 
| 
       7731 
7729 
     | 
    
         
             
              {
         
     | 
| 
       7732 
7730 
     | 
    
         
             
                name: 'configure',
         
     | 
| 
         @@ -7737,10 +7735,6 @@ export const NativeFunctions = [ 
     | 
|
| 
       7737 
7735 
     | 
    
         
             
                name: 'isConfigSupported',
         
     | 
| 
       7738 
7736 
     | 
    
         
             
                signatures: [['config']]
         
     | 
| 
       7739 
7737 
     | 
    
         
             
              },
         
     | 
| 
       7740 
     | 
    
         
            -
              {
         
     | 
| 
       7741 
     | 
    
         
            -
                name: 'AudioEncoder',
         
     | 
| 
       7742 
     | 
    
         
            -
                signatures: [['init']]
         
     | 
| 
       7743 
     | 
    
         
            -
              },
         
     | 
| 
       7744 
7738 
     | 
    
         
             
              {
         
     | 
| 
       7745 
7739 
     | 
    
         
             
                name: 'EncodedAudioChunk',
         
     | 
| 
       7746 
7740 
     | 
    
         
             
                signatures: [['init']]
         
     | 
| 
         @@ -7761,10 +7755,6 @@ export const NativeFunctions = [ 
     | 
|
| 
       7761 
7755 
     | 
    
         
             
                name: 'VideoDecoder',
         
     | 
| 
       7762 
7756 
     | 
    
         
             
                signatures: [['init']]
         
     | 
| 
       7763 
7757 
     | 
    
         
             
              },
         
     | 
| 
       7764 
     | 
    
         
            -
              {
         
     | 
| 
       7765 
     | 
    
         
            -
                name: 'VideoEncoder',
         
     | 
| 
       7766 
     | 
    
         
            -
                signatures: [['init']]
         
     | 
| 
       7767 
     | 
    
         
            -
              },
         
     | 
| 
       7768 
7758 
     | 
    
         
             
              {
         
     | 
| 
       7769 
7759 
     | 
    
         
             
                name: 'VideoFrame',
         
     | 
| 
       7770 
7760 
     | 
    
         
             
                signatures: [['source','?init'],['data','init']]
         
     | 
| 
         @@ -91,8 +91,8 @@ 
     | 
|
| 
       91 
91 
     | 
    
         
             
              display: table-row;
         
     | 
| 
       92 
92 
     | 
    
         
             
            }
         
     | 
| 
       93 
93 
     | 
    
         | 
| 
       94 
     | 
    
         
            -
            .striped-data-grid .revealed.data-grid-data-grid-node:nth-child(odd):not(.dirty):not(.selected),
         
     | 
| 
       95 
     | 
    
         
            -
            .striped-data-grid-starts-with-odd .revealed.data-grid-data-grid-node:nth-child(even):not(.dirty):not(.selected) {
         
     | 
| 
      
 94 
     | 
    
         
            +
            .striped-data-grid .revealed.data-grid-data-grid-node:nth-child(odd):not(.dirty):not(.selected):not(:hover),
         
     | 
| 
      
 95 
     | 
    
         
            +
            .striped-data-grid-starts-with-odd .revealed.data-grid-data-grid-node:nth-child(even):not(.dirty):not(.selected):not(:hover) {
         
     | 
| 
       96 
96 
     | 
    
         
             
              background-color: var(--color-background-elevation-1);
         
     | 
| 
       97 
97 
     | 
    
         
             
            }
         
     | 
| 
       98 
98 
     | 
    
         | 
    
        package/package.json
    CHANGED