Index: third_party/WebKit/Source/core/inspector/protocol/Rendering.json |
diff --git a/third_party/WebKit/Source/core/inspector/protocol/Rendering.json b/third_party/WebKit/Source/core/inspector/protocol/Rendering.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e690aad62711d14dea5a23917b7e7c366bf43c3c |
--- /dev/null |
+++ b/third_party/WebKit/Source/core/inspector/protocol/Rendering.json |
@@ -0,0 +1,66 @@ |
+{ |
+ "domain": "Rendering", |
+ "version": { |
+ "major": "1", |
+ "minor": "1" |
+ }, |
+ "description": "This domain allows to control rendering of the page.", |
+ "hidden": true, |
+ "commands": [ |
+ { |
+ "name": "setShowPaintRects", |
+ "description": "Requests that backend shows paint rectangles", |
+ "parameters": [ |
+ { |
+ "name": "result", |
+ "type": "boolean", |
+ "description": "True for showing paint rectangles" |
+ } |
+ ] |
+ }, |
+ { |
+ "name": "setShowDebugBorders", |
+ "description": "Requests that backend shows debug borders on layers", |
+ "parameters": [ |
+ { |
+ "name": "show", |
+ "type": "boolean", |
+ "description": "True for showing debug borders" |
+ } |
+ ] |
+ }, |
+ { |
+ "name": "setShowFPSCounter", |
+ "description": "Requests that backend shows the FPS counter", |
+ "parameters": [ |
+ { |
+ "name": "show", |
+ "type": "boolean", |
+ "description": "True for showing the FPS counter" |
+ } |
+ ] |
+ }, |
+ { |
+ "name": "setShowScrollBottleneckRects", |
+ "description": "Requests that backend shows scroll bottleneck rects", |
+ "parameters": [ |
+ { |
+ "name": "show", |
+ "type": "boolean", |
+ "description": "True for showing scroll bottleneck rects" |
+ } |
+ ] |
+ }, |
+ { |
+ "name": "setShowViewportSizeOnResize", |
+ "description": "Paints viewport size upon main frame resize.", |
+ "parameters": [ |
+ { |
+ "name": "show", |
+ "type": "boolean", |
+ "description": "Whether to paint size or not." |
+ } |
+ ] |
+ } |
+ ] |
+} |