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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/elements/module.json

Issue 1797323003: DevTools: Hex colors aren't forced to uppercase (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tests Created 4 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/common/Color.js ('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 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@WebInspector.PanelFactory", 4 "type": "@WebInspector.PanelFactory",
5 "name": "elements", 5 "name": "elements",
6 "title": "Elements", 6 "title": "Elements",
7 "order": 10, 7 "order": 10,
8 "className": "WebInspector.ElementsPanelFactory" 8 "className": "WebInspector.ElementsPanelFactory"
9 }, 9 },
10 { 10 {
(...skipping 14 matching lines...) Expand all
25 { 25 {
26 "type": "setting", 26 "type": "setting",
27 "category": "Elements", 27 "category": "Elements",
28 "order": 0, 28 "order": 0,
29 "title": "Color format:", 29 "title": "Color format:",
30 "settingName": "colorFormat", 30 "settingName": "colorFormat",
31 "settingType": "enum", 31 "settingType": "enum",
32 "defaultValue": "original", 32 "defaultValue": "original",
33 "options": [ 33 "options": [
34 { "title": "Set color format as authored", "text": "As authored" , "value": "original" }, 34 { "title": "Set color format as authored", "text": "As authored" , "value": "original" },
35 { "title": "Set color format to HEX", "text": "HEX: #DAC0DE", "v alue": "hex", "raw": true }, 35 { "title": "Set color format to HEX", "text": "HEX: #dac0de", "v alue": "hex", "raw": true },
36 { "title": "Set color format to RGB", "text": "RGB: rgb(128, 255 , 255)", "value": "rgb", "raw": true }, 36 { "title": "Set color format to RGB", "text": "RGB: rgb(128, 255 , 255)", "value": "rgb", "raw": true },
37 { "title": "Set color format to HSL", "text": "HSL: hsl(300, 80% , 90%)", "value": "hsl", "raw": true } 37 { "title": "Set color format to HSL", "text": "HSL: hsl(300, 80% , 90%)", "value": "hsl", "raw": true }
38 ] 38 ]
39 }, 39 },
40 { 40 {
41 "type": "setting", 41 "type": "setting",
42 "category": "Elements", 42 "category": "Elements",
43 "order":1, 43 "order":1,
44 "title": "Show user agent shadow DOM", 44 "title": "Show user agent shadow DOM",
45 "settingName": "showUAShadowDOM", 45 "settingName": "showUAShadowDOM",
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 ], 175 ],
176 "resources": [ 176 "resources": [
177 "bezierEditor.css", 177 "bezierEditor.css",
178 "breadcrumbs.css", 178 "breadcrumbs.css",
179 "computedStyleSidebarPane.css", 179 "computedStyleSidebarPane.css",
180 "elementsPanel.css", 180 "elementsPanel.css",
181 "elementsTreeOutline.css", 181 "elementsTreeOutline.css",
182 "spectrum.css" 182 "spectrum.css"
183 ] 183 ]
184 } 184 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/common/Color.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698