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

Side by Side Diff: third_party/WebKit/Source/core/inspector/browser_protocol.json

Issue 2525903003: Add Page.stopLoading to devtools and --timeout switch to headless_shell (Closed)
Patch Set: FixPage.stopLoading command description. Created 4 years 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
« no previous file with comments | « third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "2" }, 2 "version": { "major": "1", "minor": "2" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "experimental": true, 5 "experimental": 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 "name": "navigate", 252 "name": "navigate",
253 "parameters": [ 253 "parameters": [
254 { "name": "url", "type": "string", "description": "URL to na vigate the page to." } 254 { "name": "url", "type": "string", "description": "URL to na vigate the page to." }
255 ], 255 ],
256 "returns": [ 256 "returns": [
257 { "name": "frameId", "$ref": "FrameId", "experimental": true , "description": "Frame id that will be navigated." } 257 { "name": "frameId", "$ref": "FrameId", "experimental": true , "description": "Frame id that will be navigated." }
258 ], 258 ],
259 "description": "Navigates current page to the given URL." 259 "description": "Navigates current page to the given URL."
260 }, 260 },
261 { 261 {
262 "name": "stopLoading",
263 "description": "Force the page stop all navigations and pending resource fetches.",
264 "experimental": true
265 },
266 {
262 "name": "getNavigationHistory", 267 "name": "getNavigationHistory",
263 "returns": [ 268 "returns": [
264 { "name": "currentIndex", "type": "integer", "description": "Ind ex of the current navigation history entry." }, 269 { "name": "currentIndex", "type": "integer", "description": "Ind ex of the current navigation history entry." },
265 { "name": "entries", "type": "array", "items": { "$ref": "Naviga tionEntry" }, "description": "Array of navigation history entries." } 270 { "name": "entries", "type": "array", "items": { "$ref": "Naviga tionEntry" }, "description": "Array of navigation history entries." }
266 ], 271 ],
267 "description": "Returns navigation history for the current page.", 272 "description": "Returns navigation history for the current page.",
268 "experimental": true 273 "experimental": true
269 }, 274 },
270 { 275 {
271 "name": "navigateToHistoryEntry", 276 "name": "navigateToHistoryEntry",
(...skipping 4215 matching lines...) Expand 10 before | Expand all | Expand 10 after
4487 "name": "accepted", 4492 "name": "accepted",
4488 "description": "Informs that port was successfully bound and got a specified connection id.", 4493 "description": "Informs that port was successfully bound and got a specified connection id.",
4489 "parameters": [ 4494 "parameters": [
4490 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." }, 4495 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." },
4491 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." } 4496 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." }
4492 ] 4497 ]
4493 } 4498 }
4494 ] 4499 ]
4495 }] 4500 }]
4496 } 4501 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698