forked from sajjadium/Crawlium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstance_prop.txt
More file actions
10930 lines (10930 loc) · 359 KB
/
instance_prop.txt
File metadata and controls
10930 lines (10930 loc) · 359 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Chrome {
_events: [Object: null prototype] {},
_eventsCount: 0,
_maxListeners: undefined,
host: 'localhost',
port: 9222,
secure: false,
useHostName: false,
alterPath: [Function],
protocol: {
domains: [
[Object], [Object], [Object], [Object],
[Object], [Object], [Object], [Object],
[Object], [Object], [Object], [Object],
[Object], [Object], [Object], [Object],
[Object], [Object], [Object], [Object],
[Object], [Object], [Object], [Object],
[Object], [Object], [Object], [Object],
[Object], [Object], [Object], [Object],
[Object], [Object], [Object], [Object],
[Object], [Object], [Object], [Object],
[Object], [Object], [Object], [Object],
[Object]
],
version: { major: '1', minor: '3' }
},
local: false,
target: 'ws://127.0.0.1:9222/devtools/page/BE31336673B033A476B1FCFB0548D3A3',
_notifier: EventEmitter {
_events: [Object: null prototype] { error: [Function] },
_eventsCount: 1,
_maxListeners: undefined
},
_callbacks: {},
_nextCommandId: 17,
webSocketUrl: 'ws://127.0.0.1:9222/devtools/page/BE31336673B033A476B1FCFB0548D3A3',
Accessibility: {
disable: [Function: handler] {
category: 'command',
description: 'Disables the accessibility domain.'
},
enable: [Function: handler] {
category: 'command',
description: 'Enables the accessibility domain which causes `AXNodeId`s to remain consistent between method calls.\n' +
'This turns on accessibility for the page, which can impact performance until accessibility is disabled.'
},
getPartialAXTree: [Function: handler] {
category: 'command',
description: 'Fetches the accessibility node and partial accessibility tree for this DOM node, if it exists.',
experimental: true,
parameters: [Object],
returns: [Array]
},
getFullAXTree: [Function: handler] {
category: 'command',
description: 'Fetches the entire accessibility tree',
experimental: true,
returns: [Array]
},
AXNodeId: {
category: 'type',
id: 'AXNodeId',
description: 'Unique accessibility node identifier.',
type: 'string'
},
AXValueType: {
category: 'type',
id: 'AXValueType',
description: 'Enum of possible property types.',
type: 'string',
enum: [Array]
},
AXValueSourceType: {
category: 'type',
id: 'AXValueSourceType',
description: 'Enum of possible property sources.',
type: 'string',
enum: [Array]
},
AXValueNativeSourceType: {
category: 'type',
id: 'AXValueNativeSourceType',
description: 'Enum of possible native property sources (as a subtype of a particular AXValueSourceType).',
type: 'string',
enum: [Array]
},
AXValueSource: {
category: 'type',
id: 'AXValueSource',
description: 'A single source for a computed AX property.',
type: 'object',
properties: [Object]
},
AXRelatedNode: {
category: 'type',
id: 'AXRelatedNode',
type: 'object',
properties: [Object]
},
AXProperty: {
category: 'type',
id: 'AXProperty',
type: 'object',
properties: [Object]
},
AXValue: {
category: 'type',
id: 'AXValue',
description: 'A single computed AX property.',
type: 'object',
properties: [Object]
},
AXPropertyName: {
category: 'type',
id: 'AXPropertyName',
description: 'Values of AXProperty name:\n' +
"- from 'busy' to 'roledescription': states which apply to every AX node\n" +
"- from 'live' to 'root': attributes which apply to nodes in live regions\n" +
"- from 'autocomplete' to 'valuetext': attributes which apply to widgets\n" +
"- from 'checked' to 'selected': states which apply to widgets\n" +
"- from 'activedescendant' to 'owns' - relationships between elements other than parent/child/sibling.",
type: 'string',
enum: [Array]
},
AXNode: {
category: 'type',
id: 'AXNode',
description: 'A node in the accessibility tree.',
type: 'object',
properties: [Object]
}
},
Animation: {
disable: [Function: handler] {
category: 'command',
description: 'Disables animation domain notifications.'
},
enable: [Function: handler] {
category: 'command',
description: 'Enables animation domain notifications.'
},
getCurrentTime: [Function: handler] {
category: 'command',
description: 'Returns the current time of the an animation.',
parameters: [Object],
returns: [Array]
},
getPlaybackRate: [Function: handler] {
category: 'command',
description: 'Gets the playback rate of the document timeline.',
returns: [Array]
},
releaseAnimations: [Function: handler] {
category: 'command',
description: 'Releases a set of animations to no longer be manipulated.',
parameters: [Object]
},
resolveAnimation: [Function: handler] {
category: 'command',
description: 'Gets the remote object of the Animation.',
parameters: [Object],
returns: [Array]
},
seekAnimations: [Function: handler] {
category: 'command',
description: 'Seek a set of animations to a particular time within each animation.',
parameters: [Object]
},
setPaused: [Function: handler] {
category: 'command',
description: 'Sets the paused state of a set of animations.',
parameters: [Object]
},
setPlaybackRate: [Function: handler] {
category: 'command',
description: 'Sets the playback rate of the document timeline.',
parameters: [Object]
},
setTiming: [Function: handler] {
category: 'command',
description: 'Sets the timing of an animation node.',
parameters: [Object]
},
animationCanceled: [Function: handler] {
category: 'event',
description: 'Event for when an animation has been cancelled.',
parameters: [Object]
},
animationCreated: [Function: handler] {
category: 'event',
description: 'Event for each animation that has been created.',
parameters: [Object]
},
animationStarted: [Function: handler] {
category: 'event',
description: 'Event for animation that has been started.',
parameters: [Object]
},
Animation: {
category: 'type',
id: 'Animation',
description: 'Animation instance.',
type: 'object',
properties: [Object]
},
AnimationEffect: {
category: 'type',
id: 'AnimationEffect',
description: 'AnimationEffect instance',
type: 'object',
properties: [Object]
},
KeyframesRule: {
category: 'type',
id: 'KeyframesRule',
description: 'Keyframes Rule',
type: 'object',
properties: [Object]
},
KeyframeStyle: {
category: 'type',
id: 'KeyframeStyle',
description: 'Keyframe Style',
type: 'object',
properties: [Object]
}
},
ApplicationCache: {
enable: [Function: handler] {
category: 'command',
description: 'Enables application cache domain notifications.'
},
getApplicationCacheForFrame: [Function: handler] {
category: 'command',
description: 'Returns relevant application cache data for the document in given frame.',
parameters: [Object],
returns: [Array]
},
getFramesWithManifests: [Function: handler] {
category: 'command',
description: 'Returns array of frame identifiers with manifest urls for each frame containing a document\n' +
'associated with some application cache.',
returns: [Array]
},
getManifestForFrame: [Function: handler] {
category: 'command',
description: 'Returns manifest URL for document in the given frame.',
parameters: [Object],
returns: [Array]
},
applicationCacheStatusUpdated: [Function: handler] { category: 'event', parameters: [Object] },
networkStateUpdated: [Function: handler] { category: 'event', parameters: [Object] },
ApplicationCacheResource: {
category: 'type',
id: 'ApplicationCacheResource',
description: 'Detailed application cache resource information.',
type: 'object',
properties: [Object]
},
ApplicationCache: {
category: 'type',
id: 'ApplicationCache',
description: 'Detailed application cache information.',
type: 'object',
properties: [Object]
},
FrameWithManifest: {
category: 'type',
id: 'FrameWithManifest',
description: 'Frame identifier - manifest URL pair.',
type: 'object',
properties: [Object]
}
},
Audits: {
getEncodedResponse: [Function: handler] {
category: 'command',
description: 'Returns the response body and size if it were re-encoded with the specified settings. Only\n' +
'applies to images.',
parameters: [Object],
returns: [Array]
}
},
BackgroundService: {
startObserving: [Function: handler] {
category: 'command',
description: 'Enables event updates for the service.',
parameters: [Object]
},
stopObserving: [Function: handler] {
category: 'command',
description: 'Disables event updates for the service.',
parameters: [Object]
},
setRecording: [Function: handler] {
category: 'command',
description: 'Set the recording state for the service.',
parameters: [Object]
},
clearEvents: [Function: handler] {
category: 'command',
description: 'Clears all stored data for the service.',
parameters: [Object]
},
recordingStateChanged: [Function: handler] {
category: 'event',
description: 'Called when the recording state for the service has been updated.',
parameters: [Object]
},
backgroundServiceEventReceived: [Function: handler] {
category: 'event',
description: 'Called with all existing backgroundServiceEvents when enabled, and all new\n' +
'events afterwards if enabled and recording.',
parameters: [Object]
},
ServiceName: {
category: 'type',
id: 'ServiceName',
description: 'The Background Service that will be associated with the commands/events.\n' +
'Every Background Service operates independently, but they share the same\n' +
'API.',
type: 'string',
enum: [Array]
},
EventMetadata: {
category: 'type',
id: 'EventMetadata',
description: 'A key-value pair for additional event information to pass along.',
type: 'object',
properties: [Object]
},
BackgroundServiceEvent: {
category: 'type',
id: 'BackgroundServiceEvent',
type: 'object',
properties: [Object]
}
},
Browser: {
setPermission: [Function: handler] {
category: 'command',
description: 'Set permission settings for given origin.',
experimental: true,
parameters: [Object]
},
grantPermissions: [Function: handler] {
category: 'command',
description: 'Grant specific permissions to the given origin and reject all others.',
experimental: true,
parameters: [Object]
},
resetPermissions: [Function: handler] {
category: 'command',
description: 'Reset all permission management for all origins.',
experimental: true,
parameters: [Object]
},
close: [Function: handler] {
category: 'command',
description: 'Close browser gracefully.'
},
crash: [Function: handler] {
category: 'command',
description: 'Crashes browser on the main thread.',
experimental: true
},
crashGpuProcess: [Function: handler] {
category: 'command',
description: 'Crashes GPU process.',
experimental: true
},
getVersion: [Function: handler] {
category: 'command',
description: 'Returns version information.',
returns: [Array]
},
getBrowserCommandLine: [Function: handler] {
category: 'command',
description: 'Returns the command line switches for the browser process if, and only if\n' +
'--enable-automation is on the commandline.',
experimental: true,
returns: [Array]
},
getHistograms: [Function: handler] {
category: 'command',
description: 'Get Chrome histograms.',
experimental: true,
parameters: [Object],
returns: [Array]
},
getHistogram: [Function: handler] {
category: 'command',
description: 'Get a Chrome histogram by name.',
experimental: true,
parameters: [Object],
returns: [Array]
},
getWindowBounds: [Function: handler] {
category: 'command',
description: 'Get position and size of the browser window.',
experimental: true,
parameters: [Object],
returns: [Array]
},
getWindowForTarget: [Function: handler] {
category: 'command',
description: 'Get the browser window that contains the devtools target.',
experimental: true,
parameters: [Object],
returns: [Array]
},
setWindowBounds: [Function: handler] {
category: 'command',
description: 'Set position and/or size of the browser window.',
experimental: true,
parameters: [Object]
},
setDockTile: [Function: handler] {
category: 'command',
description: 'Set dock tile details, platform-specific.',
experimental: true,
parameters: [Object]
},
BrowserContextID: {
category: 'type',
id: 'BrowserContextID',
experimental: true,
type: 'string'
},
WindowID: {
category: 'type',
id: 'WindowID',
experimental: true,
type: 'integer'
},
WindowState: {
category: 'type',
id: 'WindowState',
description: 'The state of the browser window.',
experimental: true,
type: 'string',
enum: [Array]
},
Bounds: {
category: 'type',
id: 'Bounds',
description: 'Browser window bounds information',
experimental: true,
type: 'object',
properties: [Object]
},
PermissionType: {
category: 'type',
id: 'PermissionType',
experimental: true,
type: 'string',
enum: [Array]
},
PermissionSetting: {
category: 'type',
id: 'PermissionSetting',
experimental: true,
type: 'string',
enum: [Array]
},
PermissionDescriptor: {
category: 'type',
id: 'PermissionDescriptor',
description: 'Definition of PermissionDescriptor defined in the Permissions API:\n' +
'https://w3c.github.io/permissions/#dictdef-permissiondescriptor.',
experimental: true,
type: 'object',
properties: [Object]
},
Bucket: {
category: 'type',
id: 'Bucket',
description: 'Chrome histogram bucket.',
experimental: true,
type: 'object',
properties: [Object]
},
Histogram: {
category: 'type',
id: 'Histogram',
description: 'Chrome histogram.',
experimental: true,
type: 'object',
properties: [Object]
}
},
CSS: {
addRule: [Function: handler] {
category: 'command',
description: 'Inserts a new rule with the given `ruleText` in a stylesheet with given `styleSheetId`, at the\n' +
'position specified by `location`.',
parameters: [Object],
returns: [Array]
},
collectClassNames: [Function: handler] {
category: 'command',
description: 'Returns all class names from specified stylesheet.',
parameters: [Object],
returns: [Array]
},
createStyleSheet: [Function: handler] {
category: 'command',
description: 'Creates a new special "via-inspector" stylesheet in the frame with given `frameId`.',
parameters: [Object],
returns: [Array]
},
disable: [Function: handler] {
category: 'command',
description: 'Disables the CSS agent for the given page.'
},
enable: [Function: handler] {
category: 'command',
description: 'Enables the CSS agent for the given page. Clients should not assume that the CSS agent has been\n' +
'enabled until the result of this command is received.'
},
forcePseudoState: [Function: handler] {
category: 'command',
description: 'Ensures that the given node will have specified pseudo-classes whenever its style is computed by\n' +
'the browser.',
parameters: [Object]
},
getBackgroundColors: [Function: handler] {
category: 'command',
parameters: [Object],
returns: [Array]
},
getComputedStyleForNode: [Function: handler] {
category: 'command',
description: 'Returns the computed style for a DOM node identified by `nodeId`.',
parameters: [Object],
returns: [Array]
},
getInlineStylesForNode: [Function: handler] {
category: 'command',
description: 'Returns the styles defined inline (explicitly in the "style" attribute and implicitly, using DOM\n' +
'attributes) for a DOM node identified by `nodeId`.',
parameters: [Object],
returns: [Array]
},
getMatchedStylesForNode: [Function: handler] {
category: 'command',
description: 'Returns requested styles for a DOM node identified by `nodeId`.',
parameters: [Object],
returns: [Array]
},
getMediaQueries: [Function: handler] {
category: 'command',
description: 'Returns all media queries parsed by the rendering engine.',
returns: [Array]
},
getPlatformFontsForNode: [Function: handler] {
category: 'command',
description: 'Requests information about platform fonts which we used to render child TextNodes in the given\n' +
'node.',
parameters: [Object],
returns: [Array]
},
getStyleSheetText: [Function: handler] {
category: 'command',
description: 'Returns the current textual content for a stylesheet.',
parameters: [Object],
returns: [Array]
},
setEffectivePropertyValueForNode: [Function: handler] {
category: 'command',
description: 'Find a rule with the given active property for the given node and set the new value for this\n' +
'property',
parameters: [Object]
},
setKeyframeKey: [Function: handler] {
category: 'command',
description: 'Modifies the keyframe rule key text.',
parameters: [Object],
returns: [Array]
},
setMediaText: [Function: handler] {
category: 'command',
description: 'Modifies the rule selector.',
parameters: [Object],
returns: [Array]
},
setRuleSelector: [Function: handler] {
category: 'command',
description: 'Modifies the rule selector.',
parameters: [Object],
returns: [Array]
},
setStyleSheetText: [Function: handler] {
category: 'command',
description: 'Sets the new stylesheet text.',
parameters: [Object],
returns: [Array]
},
setStyleTexts: [Function: handler] {
category: 'command',
description: 'Applies specified style edits one after another in the given order.',
parameters: [Object],
returns: [Array]
},
startRuleUsageTracking: [Function: handler] {
category: 'command',
description: 'Enables the selector recording.'
},
stopRuleUsageTracking: [Function: handler] {
category: 'command',
description: 'Stop tracking rule usage and return the list of rules that were used since last call to\n' +
'`takeCoverageDelta` (or since start of coverage instrumentation)',
returns: [Array]
},
takeCoverageDelta: [Function: handler] {
category: 'command',
description: 'Obtain list of rules that became used since last call to this method (or since start of coverage\n' +
'instrumentation)',
returns: [Array]
},
fontsUpdated: [Function: handler] {
category: 'event',
description: 'Fires whenever a web font is updated. A non-empty font parameter indicates a successfully loaded\n' +
'web font',
parameters: [Object]
},
mediaQueryResultChanged: [Function: handler] {
category: 'event',
description: 'Fires whenever a MediaQuery result changes (for example, after a browser window has been\n' +
'resized.) The current implementation considers only viewport-dependent media features.'
},
styleSheetAdded: [Function: handler] {
category: 'event',
description: 'Fired whenever an active document stylesheet is added.',
parameters: [Object]
},
styleSheetChanged: [Function: handler] {
category: 'event',
description: 'Fired whenever a stylesheet is changed as a result of the client operation.',
parameters: [Object]
},
styleSheetRemoved: [Function: handler] {
category: 'event',
description: 'Fired whenever an active document stylesheet is removed.',
parameters: [Object]
},
StyleSheetId: { category: 'type', id: 'StyleSheetId', type: 'string' },
StyleSheetOrigin: {
category: 'type',
id: 'StyleSheetOrigin',
description: 'Stylesheet type: "injected" for stylesheets injected via extension, "user-agent" for user-agent\n' +
'stylesheets, "inspector" for stylesheets created by the inspector (i.e. those holding the "via\n' +
'inspector" rules), "regular" for regular stylesheets.',
type: 'string',
enum: [Array]
},
PseudoElementMatches: {
category: 'type',
id: 'PseudoElementMatches',
description: 'CSS rule collection for a single pseudo style.',
type: 'object',
properties: [Object]
},
InheritedStyleEntry: {
category: 'type',
id: 'InheritedStyleEntry',
description: 'Inherited CSS rule collection from ancestor node.',
type: 'object',
properties: [Object]
},
RuleMatch: {
category: 'type',
id: 'RuleMatch',
description: 'Match data for a CSS rule.',
type: 'object',
properties: [Object]
},
Value: {
category: 'type',
id: 'Value',
description: 'Data for a simple selector (these are delimited by commas in a selector list).',
type: 'object',
properties: [Object]
},
SelectorList: {
category: 'type',
id: 'SelectorList',
description: 'Selector list data.',
type: 'object',
properties: [Object]
},
CSSStyleSheetHeader: {
category: 'type',
id: 'CSSStyleSheetHeader',
description: 'CSS stylesheet metainformation.',
type: 'object',
properties: [Object]
},
CSSRule: {
category: 'type',
id: 'CSSRule',
description: 'CSS rule representation.',
type: 'object',
properties: [Object]
},
RuleUsage: {
category: 'type',
id: 'RuleUsage',
description: 'CSS coverage information.',
type: 'object',
properties: [Object]
},
SourceRange: {
category: 'type',
id: 'SourceRange',
description: 'Text range within a resource. All numbers are zero-based.',
type: 'object',
properties: [Object]
},
ShorthandEntry: {
category: 'type',
id: 'ShorthandEntry',
type: 'object',
properties: [Object]
},
CSSComputedStyleProperty: {
category: 'type',
id: 'CSSComputedStyleProperty',
type: 'object',
properties: [Object]
},
CSSStyle: {
category: 'type',
id: 'CSSStyle',
description: 'CSS style representation.',
type: 'object',
properties: [Object]
},
CSSProperty: {
category: 'type',
id: 'CSSProperty',
description: 'CSS property declaration data.',
type: 'object',
properties: [Object]
},
CSSMedia: {
category: 'type',
id: 'CSSMedia',
description: 'CSS media rule descriptor.',
type: 'object',
properties: [Object]
},
MediaQuery: {
category: 'type',
id: 'MediaQuery',
description: 'Media query descriptor.',
type: 'object',
properties: [Object]
},
MediaQueryExpression: {
category: 'type',
id: 'MediaQueryExpression',
description: 'Media query expression descriptor.',
type: 'object',
properties: [Object]
},
PlatformFontUsage: {
category: 'type',
id: 'PlatformFontUsage',
description: 'Information about amount of glyphs that were rendered with given font.',
type: 'object',
properties: [Object]
},
FontFace: {
category: 'type',
id: 'FontFace',
description: 'Properties of a web font: https://www.w3.org/TR/2008/REC-CSS2-20080411/fonts.html#font-descriptions',
type: 'object',
properties: [Object]
},
CSSKeyframesRule: {
category: 'type',
id: 'CSSKeyframesRule',
description: 'CSS keyframes rule representation.',
type: 'object',
properties: [Object]
},
CSSKeyframeRule: {
category: 'type',
id: 'CSSKeyframeRule',
description: 'CSS keyframe rule representation.',
type: 'object',
properties: [Object]
},
StyleDeclarationEdit: {
category: 'type',
id: 'StyleDeclarationEdit',
description: 'A descriptor of operation to mutate style declaration text.',
type: 'object',
properties: [Object]
}
},
CacheStorage: {
deleteCache: [Function: handler] {
category: 'command',
description: 'Deletes a cache.',
parameters: [Object]
},
deleteEntry: [Function: handler] {
category: 'command',
description: 'Deletes a cache entry.',
parameters: [Object]
},
requestCacheNames: [Function: handler] {
category: 'command',
description: 'Requests cache names.',
parameters: [Object],
returns: [Array]
},
requestCachedResponse: [Function: handler] {
category: 'command',
description: 'Fetches cache entry.',
parameters: [Object],
returns: [Array]
},
requestEntries: [Function: handler] {
category: 'command',
description: 'Requests data from cache.',
parameters: [Object],
returns: [Array]
},
CacheId: {
category: 'type',
id: 'CacheId',
description: 'Unique identifier of the Cache object.',
type: 'string'
},
CachedResponseType: {
category: 'type',
id: 'CachedResponseType',
description: 'type of HTTP response cached',
type: 'string',
enum: [Array]
},
DataEntry: {
category: 'type',
id: 'DataEntry',
description: 'Data entry.',
type: 'object',
properties: [Object]
},
Cache: {
category: 'type',
id: 'Cache',
description: 'Cache identifier.',
type: 'object',
properties: [Object]
},
Header: {
category: 'type',
id: 'Header',
type: 'object',
properties: [Object]
},
CachedResponse: {
category: 'type',
id: 'CachedResponse',
description: 'Cached response',
type: 'object',
properties: [Object]
}
},
Cast: {
enable: [Function: handler] {
category: 'command',
description: 'Starts observing for sinks that can be used for tab mirroring, and if set,\n' +
'sinks compatible with |presentationUrl| as well. When sinks are found, a\n' +
'|sinksUpdated| event is fired.\n' +
'Also starts observing for issue messages. When an issue is added or removed,\n' +
'an |issueUpdated| event is fired.',
parameters: [Object]
},
disable: [Function: handler] {
category: 'command',
description: 'Stops observing for sinks and issues.'
},
setSinkToUse: [Function: handler] {
category: 'command',
description: 'Sets a sink to be used when the web page requests the browser to choose a\n' +
'sink via Presentation API, Remote Playback API, or Cast SDK.',
parameters: [Object]
},
startTabMirroring: [Function: handler] {
category: 'command',
description: 'Starts mirroring the tab to the sink.',
parameters: [Object]
},
stopCasting: [Function: handler] {
category: 'command',
description: 'Stops the active Cast session on the sink.',
parameters: [Object]
},
sinksUpdated: [Function: handler] {
category: 'event',
description: 'This is fired whenever the list of available sinks changes. A sink is a\n' +
'device or a software surface that you can cast to.',
parameters: [Object]
},
issueUpdated: [Function: handler] {
category: 'event',
description: 'This is fired whenever the outstanding issue/error message changes.\n' +
'|issueMessage| is empty if there is no issue.',
parameters: [Object]
},
Sink: {
category: 'type',
id: 'Sink',
type: 'object',
properties: [Object]
}
},
DOM: {
collectClassNamesFromSubtree: [Function: handler] {
category: 'command',
description: "Collects class names for the node with given id and all of it's child nodes.",
experimental: true,
parameters: [Object],
returns: [Array]
},
copyTo: [Function: handler] {
category: 'command',
description: 'Creates a deep copy of the specified node and places it into the target container before the\n' +
'given anchor.',
experimental: true,
parameters: [Object],
returns: [Array]
},
describeNode: [Function: handler] {
category: 'command',
description: 'Describes node given its id, does not require domain to be enabled. Does not start tracking any\n' +
'objects, can be used for automation.',
parameters: [Object],
returns: [Array]
},
disable: [Function: handler] {
category: 'command',
description: 'Disables DOM agent for the given page.'
},
discardSearchResults: [Function: handler] {
category: 'command',
description: 'Discards search results from the session with the given id. `getSearchResults` should no longer\n' +
'be called for that search.',
experimental: true,
parameters: [Object]
},
enable: [Function: handler] {
category: 'command',
description: 'Enables DOM agent for the given page.'
},
focus: [Function: handler] {
category: 'command',
description: 'Focuses the given element.',
parameters: [Object]
},
getAttributes: [Function: handler] {
category: 'command',
description: 'Returns attributes for the specified node.',
parameters: [Object],
returns: [Array]
},
getBoxModel: [Function: handler] {
category: 'command',
description: 'Returns boxes for the given node.',
parameters: [Object],
returns: [Array]
},
getContentQuads: [Function: handler] {
category: 'command',
description: 'Returns quads that describe node position on the page. This method\n' +
'might return multiple quads for inline nodes.',
experimental: true,
parameters: [Object],
returns: [Array]
},
getDocument: [Function: handler] {
category: 'command',
description: 'Returns the root DOM node (and optionally the subtree) to the caller.',
parameters: [Object],
returns: [Array]
},
getFlattenedDocument: [Function: handler] {
category: 'command',
description: 'Returns the root DOM node (and optionally the subtree) to the caller.',
parameters: [Object],
returns: [Array]
},
getNodeForLocation: [Function: handler] {
category: 'command',
description: 'Returns node id at given location. Depending on whether DOM domain is enabled, nodeId is\n' +
'either returned or not.',