Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Side by Side Diff: third_party/WebKit/Source/devtools/protocol.json

Issue 1632983002: [DevTools] Do not reset scroll when emulating device. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 { "name": "positionY", "type": "integer", "optional": true, "description": "Overriding view Y position on screen in pixels (minimum 0, maxim um 10000000). Only used for |mobile==true|." } 667 { "name": "positionY", "type": "integer", "optional": true, "description": "Overriding view Y position on screen in pixels (minimum 0, maxim um 10000000). Only used for |mobile==true|." }
668 ], 668 ],
669 "handlers": ["browser"] 669 "handlers": ["browser"]
670 }, 670 },
671 { 671 {
672 "name": "clearDeviceMetricsOverride", 672 "name": "clearDeviceMetricsOverride",
673 "description": "Clears the overriden device metrics.", 673 "description": "Clears the overriden device metrics.",
674 "handlers": ["browser"] 674 "handlers": ["browser"]
675 }, 675 },
676 { 676 {
677 "name": "resetScrollAndPageScaleFactor", 677 "name": "resetPageScaleFactor",
678 "description": "Requests that scroll offsets and page scale fact or are reset to initial values." 678 "description": "Requests that page scale factor is reset to init ial values."
679 }, 679 },
680 { 680 {
681 "name": "setPageScaleFactor", 681 "name": "setPageScaleFactor",
682 "description": "Sets a specified page scale factor.", 682 "description": "Sets a specified page scale factor.",
683 "parameters": [ 683 "parameters": [
684 { "name": "pageScaleFactor", "type": "number", "description" : "Page scale factor." } 684 { "name": "pageScaleFactor", "type": "number", "description" : "Page scale factor." }
685 ] 685 ]
686 }, 686 },
687 { 687 {
688 "name": "setScriptExecutionDisabled", 688 "name": "setScriptExecutionDisabled",
(...skipping 4627 matching lines...) Expand 10 before | Expand all | Expand 10 after
5316 ], 5316 ],
5317 "returns": [ 5317 "returns": [
5318 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5318 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5319 ], 5319 ],
5320 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5320 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5321 "hidden": true 5321 "hidden": true
5322 } 5322 }
5323 ] 5323 ]
5324 }] 5324 }]
5325 } 5325 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698