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

Side by Side Diff: Source/devtools/front_end/CSSMetadata.js

Issue 194743002: DevTools: Add valid "border-style" property values to CSSMetadata (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 * Copyright (C) 2010 Nikita Vasilyev. All rights reserved. 2 * Copyright (C) 2010 Nikita Vasilyev. All rights reserved.
3 * Copyright (C) 2010 Joseph Pecoraro. All rights reserved. 3 * Copyright (C) 2010 Joseph Pecoraro. All rights reserved.
4 * Copyright (C) 2010 Google Inc. All rights reserved. 4 * Copyright (C) 2010 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are 7 * modification, are permitted provided that the following conditions are
8 * met: 8 * met:
9 * 9 *
10 * * Redistributions of source code must retain the above copyright 10 * * Redistributions of source code must retain the above copyright
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 "cursor": { values: [ 245 "cursor": { values: [
246 "none", "copy", "auto", "crosshair", "default", "pointer", "move", "vert ical-text", "cell", "context-menu", 246 "none", "copy", "auto", "crosshair", "default", "pointer", "move", "vert ical-text", "cell", "context-menu",
247 "alias", "progress", "no-drop", "not-allowed", "-webkit-zoom-in", "-webk it-zoom-out", "e-resize", "ne-resize", 247 "alias", "progress", "no-drop", "not-allowed", "-webkit-zoom-in", "-webk it-zoom-out", "e-resize", "ne-resize",
248 "nw-resize", "n-resize", "se-resize", "sw-resize", "s-resize", "w-resize ", "ew-resize", "ns-resize", 248 "nw-resize", "n-resize", "se-resize", "sw-resize", "s-resize", "w-resize ", "ew-resize", "ns-resize",
249 "nesw-resize", "nwse-resize", "col-resize", "row-resize", "text", "wait" , "help", "all-scroll", "-webkit-grab", 249 "nesw-resize", "nwse-resize", "col-resize", "row-resize", "text", "wait" , "help", "all-scroll", "-webkit-grab",
250 "-webkit-grabbing" 250 "-webkit-grabbing"
251 ] }, 251 ] },
252 "border-width": { values: [ 252 "border-width": { values: [
253 "medium", "thick", "thin" 253 "medium", "thick", "thin"
254 ] }, 254 ] },
255 "border-style": { values: [
256 "none", "hidden", "inset", "groove", "ridge", "outset", "dotted", "dashe d", "solid", "double"
257 ] },
255 "size": { values: [ 258 "size": { values: [
256 "a3", "a4", "a5", "b4", "b5", "landscape", "ledger", "legal", "letter", "portrait" 259 "a3", "a4", "a5", "b4", "b5", "landscape", "ledger", "legal", "letter", "portrait"
257 ] }, 260 ] },
258 "background-size": { values: [ 261 "background-size": { values: [
259 "contain", "cover" 262 "contain", "cover"
260 ] }, 263 ] },
261 "direction": { values: [ 264 "direction": { values: [
262 "ltr", "rtl" 265 "ltr", "rtl"
263 ] }, 266 ] },
264 "marquee-direction": { values: [ 267 "marquee-direction": { values: [
(...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after
989 * @param {string} longhand 992 * @param {string} longhand
990 * @return {?Array.<string>} 993 * @return {?Array.<string>}
991 */ 994 */
992 shorthands: function(longhand) 995 shorthands: function(longhand)
993 { 996 {
994 return this._shorthands[longhand]; 997 return this._shorthands[longhand];
995 } 998 }
996 } 999 }
997 1000
998 WebInspector.CSSMetadata.initializeWithSupportedProperties([]); 1001 WebInspector.CSSMetadata.initializeWithSupportedProperties([]);
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698