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

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

Issue 163413005: DevTools: [CSS] remove CSS Regions experiment from DevTools. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
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 2549 matching lines...) Expand 10 before | Expand all | Expand 10 after
2560 "properties": [ 2560 "properties": [
2561 { "name": "text", "type": "string", "description": "Media qu ery text." }, 2561 { "name": "text", "type": "string", "description": "Media qu ery text." },
2562 { "name": "source", "type": "string", "enum": ["mediaRule", "importRule", "linkedSheet", "inlineSheet"], "description": "Source of the media query: \"mediaRule\" if specified by a @media rule, \"importRule\" if specified by an @import rule, \"linkedSheet\" if specified by a \"media\" attribute in a linked stylesheet's LINK tag, \"inlineSheet\" if specified by a \"media\" attrib ute in an inline stylesheet's STYLE tag." }, 2562 { "name": "source", "type": "string", "enum": ["mediaRule", "importRule", "linkedSheet", "inlineSheet"], "description": "Source of the media query: \"mediaRule\" if specified by a @media rule, \"importRule\" if specified by an @import rule, \"linkedSheet\" if specified by a \"media\" attribute in a linked stylesheet's LINK tag, \"inlineSheet\" if specified by a \"media\" attrib ute in an inline stylesheet's STYLE tag." },
2563 { "name": "sourceURL", "type": "string", "optional": true, " description": "URL of the document containing the media query description." }, 2563 { "name": "sourceURL", "type": "string", "optional": true, " description": "URL of the document containing the media query description." },
2564 { "name": "range", "$ref": "SourceRange", "optional": true, "description": "The associated rule (@media or @import) header range in the encl osing stylesheet (if available)." }, 2564 { "name": "range", "$ref": "SourceRange", "optional": true, "description": "The associated rule (@media or @import) header range in the encl osing stylesheet (if available)." },
2565 { "name": "parentStyleSheetId", "$ref": "StyleSheetId", "opt ional": true, "description": "Identifier of the stylesheet containing this objec t (if exists)." } 2565 { "name": "parentStyleSheetId", "$ref": "StyleSheetId", "opt ional": true, "description": "Identifier of the stylesheet containing this objec t (if exists)." }
2566 ], 2566 ],
2567 "description": "CSS media query descriptor." 2567 "description": "CSS media query descriptor."
2568 }, 2568 },
2569 { 2569 {
2570 "id": "Region",
2571 "type": "object",
2572 "properties": [
2573 { "name": "regionOverset", "type": "string", "enum": ["overs et", "fit", "empty"], "description": "The \"overset\" attribute of a Named Flow. " },
2574 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Th e corresponding DOM node id." }
2575 ],
2576 "description": "This object represents a region that flows from a Named Flow.",
2577 "hidden": true
2578 },
2579 {
2580 "id": "NamedFlow",
2581 "type": "object",
2582 "properties": [
2583 { "name": "documentNodeId", "$ref": "DOM.NodeId", "descripti on": "The document node id." },
2584 { "name": "name", "type": "string", "description": "Named Fl ow identifier." },
2585 { "name": "overset", "type": "boolean", "description": "The \"overset\" attribute of a Named Flow." },
2586 { "name": "content", "type": "array", "items": { "$ref": "DO M.NodeId" }, "description": "An array of nodes that flow into the Named Flow." } ,
2587 { "name": "regions", "type": "array", "items": { "$ref": "Re gion" }, "description": "An array of regions associated with the Named Flow." }
2588 ],
2589 "description": "This object represents a Named Flow.",
2590 "hidden": true
2591 },
2592 {
2593 "id": "PlatformFontUsage", 2570 "id": "PlatformFontUsage",
2594 "type": "object", 2571 "type": "object",
2595 "properties": [ 2572 "properties": [
2596 { "name": "familyName", "type": "string", "description": "Fo nt's family name reported by platform."}, 2573 { "name": "familyName", "type": "string", "description": "Fo nt's family name reported by platform."},
2597 { "name": "glyphCount", "type": "number", "description": "Am ount of glyphs that were rendered with this font."} 2574 { "name": "glyphCount", "type": "number", "description": "Am ount of glyphs that were rendered with this font."}
2598 ], 2575 ],
2599 "description": "Information about amount of glyphs that were ren dered with given font.", 2576 "description": "Information about amount of glyphs that were ren dered with given font.",
2600 "hidden": true 2577 "hidden": true
2601 } 2578 }
2602 ], 2579 ],
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
2720 ], 2697 ],
2721 "description": "Creates a new empty rule with the given <code>se lector</code> in a special \"inspector\" stylesheet in the owner document of the context node." 2698 "description": "Creates a new empty rule with the given <code>se lector</code> in a special \"inspector\" stylesheet in the owner document of the context node."
2722 }, 2699 },
2723 { 2700 {
2724 "name": "forcePseudoState", 2701 "name": "forcePseudoState",
2725 "parameters": [ 2702 "parameters": [
2726 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Th e element id for which to force the pseudo state." }, 2703 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Th e element id for which to force the pseudo state." },
2727 { "name": "forcedPseudoClasses", "type": "array", "items": { "type": "string", "enum": ["active", "focus", "hover", "visited"] }, "descripti on": "Element pseudo classes to force when computing the element's style." } 2704 { "name": "forcedPseudoClasses", "type": "array", "items": { "type": "string", "enum": ["active", "focus", "hover", "visited"] }, "descripti on": "Element pseudo classes to force when computing the element's style." }
2728 ], 2705 ],
2729 "description": "Ensures that the given node will have specified pseudo-classes whenever its style is computed by the browser." 2706 "description": "Ensures that the given node will have specified pseudo-classes whenever its style is computed by the browser."
2730 },
2731 {
2732 "name": "getNamedFlowCollection",
2733 "parameters": [
2734 { "name": "documentNodeId", "$ref": "DOM.NodeId", "descripti on": "The document node id for which to get the Named Flow Collection." }
2735 ],
2736 "returns": [
2737 { "name": "namedFlows", "type": "array", "items": { "$ref": "NamedFlow" }, "description": "An array containing the Named Flows in the docume nt." }
2738 ],
2739 "description": "Returns the Named Flows from the document.",
2740 "hidden": true
2741 } 2707 }
2742 ], 2708 ],
2743 "events": [ 2709 "events": [
2744 { 2710 {
2745 "name": "mediaQueryResultChanged", 2711 "name": "mediaQueryResultChanged",
2746 "description": "Fires whenever a MediaQuery result changes (for example, after a browser window has been resized.) The current implementation co nsiders only viewport-dependent media features." 2712 "description": "Fires whenever a MediaQuery result changes (for example, after a browser window has been resized.) The current implementation co nsiders only viewport-dependent media features."
2747 }, 2713 },
2748 { 2714 {
2749 "name": "styleSheetChanged", 2715 "name": "styleSheetChanged",
2750 "parameters": [ 2716 "parameters": [
2751 { "name": "styleSheetId", "$ref": "StyleSheetId" } 2717 { "name": "styleSheetId", "$ref": "StyleSheetId" }
2752 ], 2718 ],
2753 "description": "Fired whenever a stylesheet is changed as a resu lt of the client operation." 2719 "description": "Fired whenever a stylesheet is changed as a resu lt of the client operation."
2754 }, 2720 },
2755 { 2721 {
2756 "name": "styleSheetAdded", 2722 "name": "styleSheetAdded",
2757 "parameters": [ 2723 "parameters": [
2758 { "name": "header", "$ref": "CSSStyleSheetHeader", "descript ion": "Added stylesheet metainfo." } 2724 { "name": "header", "$ref": "CSSStyleSheetHeader", "descript ion": "Added stylesheet metainfo." }
2759 ], 2725 ],
2760 "description": "Fired whenever an active document stylesheet is added." 2726 "description": "Fired whenever an active document stylesheet is added."
2761 }, 2727 },
2762 { 2728 {
2763 "name": "styleSheetRemoved", 2729 "name": "styleSheetRemoved",
2764 "parameters": [ 2730 "parameters": [
2765 { "name": "styleSheetId", "$ref": "StyleSheetId", "descripti on": "Identifier of the removed stylesheet." } 2731 { "name": "styleSheetId", "$ref": "StyleSheetId", "descripti on": "Identifier of the removed stylesheet." }
2766 ], 2732 ],
2767 "description": "Fired whenever an active document stylesheet is removed." 2733 "description": "Fired whenever an active document stylesheet is removed."
2768 },
2769 {
2770 "name": "namedFlowCreated",
2771 "parameters": [
2772 { "name": "namedFlow", "$ref": "NamedFlow", "description": " The new Named Flow." }
2773 ],
2774 "description": "Fires when a Named Flow is created.",
2775 "hidden": true
2776 },
2777 {
2778 "name": "namedFlowRemoved",
2779 "parameters": [
2780 { "name": "documentNodeId", "$ref": "DOM.NodeId", "descripti on": "The document node id." },
2781 { "name": "flowName", "type": "string", "description": "Iden tifier of the removed Named Flow." }
2782 ],
2783 "description": "Fires when a Named Flow is removed: has no assoc iated content nodes and regions.",
2784 "hidden": true
2785 },
2786 {
2787 "name": "regionLayoutUpdated",
2788 "parameters": [
2789 { "name": "namedFlow", "$ref": "NamedFlow", "description": " The Named Flow whose layout may have changed." }
2790 ],
2791 "description": "Fires when a Named Flow's layout may have change d.",
2792 "hidden": true
2793 },
2794 {
2795 "name": "regionOversetChanged",
2796 "parameters": [
2797 { "name": "namedFlow", "$ref": "NamedFlow", "description": " The Named Flow containing the regions whose regionOverset values changed." }
2798 ],
2799 "description": "Fires if any of the regionOverset values changed in a Named Flow's region chain.",
2800 "hidden": true
2801 } 2734 }
2802 ] 2735 ]
2803 }, 2736 },
2804 { 2737 {
2805 "domain": "Timeline", 2738 "domain": "Timeline",
2806 "description": "Timeline provides its clients with instrumentation recor ds that are generated during the page runtime. Timeline instrumentation can be s tarted and stopped using corresponding commands. While timeline is started, it i s generating timeline event records.", 2739 "description": "Timeline provides its clients with instrumentation recor ds that are generated during the page runtime. Timeline instrumentation can be s tarted and stopped using corresponding commands. While timeline is started, it i s generating timeline event records.",
2807 "types": [ 2740 "types": [
2808 { 2741 {
2809 "id": "Counters", 2742 "id": "Counters",
2810 "type": "object", 2743 "type": "object",
(...skipping 1277 matching lines...) Expand 10 before | Expand all | Expand 10 after
4088 ], 4021 ],
4089 "handlers": ["browser", "frontend"] 4022 "handlers": ["browser", "frontend"]
4090 }, 4023 },
4091 { 4024 {
4092 "name": "tracingComplete", 4025 "name": "tracingComplete",
4093 "handlers": ["browser", "frontend"] 4026 "handlers": ["browser", "frontend"]
4094 } 4027 }
4095 ] 4028 ]
4096 }] 4029 }]
4097 } 4030 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/cssNamedFlows.css ('k') | Source/devtools/scripts/frontend_modules.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698