OLD | NEW |
1 { | 1 { |
2 "version": { "major": "1", "minor": "1" }, | 2 "version": { "major": "1", "minor": "1" }, |
3 "domains": [{ | 3 "domains": [{ |
4 "domain": "Inspector", | 4 "domain": "Inspector", |
5 "hidden": true, | 5 "hidden": true, |
6 "types": [], | 6 "types": [], |
7 "commands": [ | 7 "commands": [ |
8 { | 8 { |
9 "name": "enable", | 9 "name": "enable", |
10 "description": "Enables inspector domain notifications." | 10 "description": "Enables inspector domain notifications." |
(...skipping 3813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3824 "name": "dispatchKeyEvent", | 3824 "name": "dispatchKeyEvent", |
3825 "parameters": [ | 3825 "parameters": [ |
3826 { "name": "type", "type": "string", "enum": ["keyDown", "key
Up", "rawKeyDown", "char"], "description": "Type of the key event." }, | 3826 { "name": "type", "type": "string", "enum": ["keyDown", "key
Up", "rawKeyDown", "char"], "description": "Type of the key event." }, |
3827 { "name": "modifiers", "type": "integer", "optional": true,
"description": "Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Met
a/Command=4, Shift=8 (default: 0)." }, | 3827 { "name": "modifiers", "type": "integer", "optional": true,
"description": "Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Met
a/Command=4, Shift=8 (default: 0)." }, |
3828 { "name": "timestamp", "type": "number", "optional": true, "
description": "Time at which the event occurred. Measured in UTC time in seconds
since January 1, 1970 (default: current time)." }, | 3828 { "name": "timestamp", "type": "number", "optional": true, "
description": "Time at which the event occurred. Measured in UTC time in seconds
since January 1, 1970 (default: current time)." }, |
3829 { "name": "text", "type": "string", "optional": true, "descr
iption": "Text as generated by processing a virtual key code with a keyboard lay
out. Not needed for for <code>keyUp</code> and <code>rawKeyDown</code> events (d
efault: \"\")" }, | 3829 { "name": "text", "type": "string", "optional": true, "descr
iption": "Text as generated by processing a virtual key code with a keyboard lay
out. Not needed for for <code>keyUp</code> and <code>rawKeyDown</code> events (d
efault: \"\")" }, |
3830 { "name": "unmodifiedText", "type": "string", "optional": tr
ue, "description": "Text that would have been generated by the keyboard if no mo
difiers were pressed (except for shift). Useful for shortcut (accelerator) key h
andling (default: \"\")." }, | 3830 { "name": "unmodifiedText", "type": "string", "optional": tr
ue, "description": "Text that would have been generated by the keyboard if no mo
difiers were pressed (except for shift). Useful for shortcut (accelerator) key h
andling (default: \"\")." }, |
3831 { "name": "keyIdentifier", "type": "string", "optional": tru
e, "description": "Unique key identifier (e.g., 'U+0041') (default: \"\")." }, | 3831 { "name": "keyIdentifier", "type": "string", "optional": tru
e, "description": "Unique key identifier (e.g., 'U+0041') (default: \"\")." }, |
3832 { "name": "windowsVirtualKeyCode", "type": "integer", "optio
nal": true, "description": "Windows virtual key code (default: 0)." }, | 3832 { "name": "windowsVirtualKeyCode", "type": "integer", "optio
nal": true, "description": "Windows virtual key code (default: 0)." }, |
3833 { "name": "nativeVirtualKeyCode", "type": "integer", "option
al": true, "description": "Native virtual key code (default: 0)." }, | 3833 { "name": "nativeVirtualKeyCode", "type": "integer", "option
al": true, "description": "Native virtual key code (default: 0)." }, |
3834 { "name": "macCharCode", "type": "integer", "optional": true
, "description": "Mac character code (default: 0)." }, | |
3835 { "name": "autoRepeat", "type": "boolean", "optional": true,
"description": "Whether the event was generated from auto repeat (default: fals
e)." }, | 3834 { "name": "autoRepeat", "type": "boolean", "optional": true,
"description": "Whether the event was generated from auto repeat (default: fals
e)." }, |
3836 { "name": "isKeypad", "type": "boolean", "optional": true, "
description": "Whether the event was generated from the keypad (default: false).
" }, | 3835 { "name": "isKeypad", "type": "boolean", "optional": true, "
description": "Whether the event was generated from the keypad (default: false).
" }, |
3837 { "name": "isSystemKey", "type": "boolean", "optional": true
, "description": "Whether the event was a system key event (default: false)." } | 3836 { "name": "isSystemKey", "type": "boolean", "optional": true
, "description": "Whether the event was a system key event (default: false)." } |
3838 ], | 3837 ], |
3839 "description": "Dispatches a key event to the page." | 3838 "description": "Dispatches a key event to the page." |
3840 }, | 3839 }, |
3841 { | 3840 { |
3842 "name": "dispatchMouseEvent", | 3841 "name": "dispatchMouseEvent", |
3843 "parameters": [ | 3842 "parameters": [ |
3844 { "name": "type", "type": "string", "enum": ["mousePressed",
"mouseReleased", "mouseMoved"], "description": "Type of the mouse event." }, | 3843 { "name": "type", "type": "string", "enum": ["mousePressed",
"mouseReleased", "mouseMoved"], "description": "Type of the mouse event." }, |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3968 "parameters": [ | 3967 "parameters": [ |
3969 { "name": "value", "type": "array", "items": { "type": "obje
ct" } } | 3968 { "name": "value", "type": "array", "items": { "type": "obje
ct" } } |
3970 ] | 3969 ] |
3971 }, | 3970 }, |
3972 { | 3971 { |
3973 "name": "tracingComplete" | 3972 "name": "tracingComplete" |
3974 } | 3973 } |
3975 ] | 3974 ] |
3976 }] | 3975 }] |
3977 } | 3976 } |
OLD | NEW |