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

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

Issue 131423002: DevTools: Add "inset" and "none" values for "box-shadow" property in CSSMetadata (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 "text-overline-mode": { values: [ 207 "text-overline-mode": { values: [
208 "continuous", "skip-white-space" 208 "continuous", "skip-white-space"
209 ] }, 209 ] },
210 "-webkit-background-composite": { values: [ 210 "-webkit-background-composite": { values: [
211 "highlight", "clear", "copy", "source-over", "source-in", "source-out", "source-atop", "destination-over", 211 "highlight", "clear", "copy", "source-over", "source-in", "source-out", "source-atop", "destination-over",
212 "destination-in", "destination-out", "destination-atop", "xor", "plus-da rker", "plus-lighter" 212 "destination-in", "destination-out", "destination-atop", "xor", "plus-da rker", "plus-lighter"
213 ] }, 213 ] },
214 "border-left-width": { values: [ 214 "border-left-width": { values: [
215 "medium", "thick", "thin" 215 "medium", "thick", "thin"
216 ] }, 216 ] },
217 "box-shadow": { values: [
218 "inset", "none"
219 ] },
217 "-webkit-writing-mode": { values: [ 220 "-webkit-writing-mode": { values: [
218 "lr", "rl", "tb", "lr-tb", "rl-tb", "tb-rl", "horizontal-tb", "vertical- rl", "vertical-lr", "horizontal-bt" 221 "lr", "rl", "tb", "lr-tb", "rl-tb", "tb-rl", "horizontal-tb", "vertical- rl", "vertical-lr", "horizontal-bt"
219 ] }, 222 ] },
220 "text-line-through-mode": { values: [ 223 "text-line-through-mode": { values: [
221 "continuous", "skip-white-space" 224 "continuous", "skip-white-space"
222 ] }, 225 ] },
223 "border-collapse": { values: [ 226 "border-collapse": { values: [
224 "collapse", "separate" 227 "collapse", "separate"
225 ] }, 228 ] },
226 "page-break-inside": { values: [ 229 "page-break-inside": { values: [
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 "background-position-x": { m: "background" }, 651 "background-position-x": { m: "background" },
649 "background-position-y": { m: "background" }, 652 "background-position-y": { m: "background" },
650 "background-repeat-x": { m: "background" }, 653 "background-repeat-x": { m: "background" },
651 "background-repeat-y": { m: "background" }, 654 "background-repeat-y": { m: "background" },
652 "border-top": { m: "background" }, 655 "border-top": { m: "background" },
653 "border-right": { m: "background" }, 656 "border-right": { m: "background" },
654 "border-bottom": { m: "background" }, 657 "border-bottom": { m: "background" },
655 "border-left": { m: "background" }, 658 "border-left": { m: "background" },
656 "border-radius": { m: "background" }, 659 "border-radius": { m: "background" },
657 "bottom": { m: "visuren" }, 660 "bottom": { m: "visuren" },
658 "box-shadow": { m: "background" },
659 "color": { m: "color", a: "foreground" }, 661 "color": { m: "color", a: "foreground" },
660 "counter-increment": { m: "generate" }, 662 "counter-increment": { m: "generate" },
661 "counter-reset": { m: "generate" }, 663 "counter-reset": { m: "generate" },
662 "grid-definition-columns": { m: "grid" }, 664 "grid-definition-columns": { m: "grid" },
663 "grid-definition-rows": { m: "grid" }, 665 "grid-definition-rows": { m: "grid" },
664 "height": { m: "box" }, 666 "height": { m: "box" },
665 "image-orientation": { m: "images" }, 667 "image-orientation": { m: "images" },
666 "left": { m: "visuren" }, 668 "left": { m: "visuren" },
667 "list-style": { m: "lists" }, 669 "list-style": { m: "lists" },
668 "min-height": { m: "box" }, 670 "min-height": { m: "box" },
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
989 991
990 /** 992 /**
991 * @param {string} longhand 993 * @param {string} longhand
992 * @return {?Array.<string>} 994 * @return {?Array.<string>}
993 */ 995 */
994 shorthands: function(longhand) 996 shorthands: function(longhand)
995 { 997 {
996 return this._shorthands[longhand]; 998 return this._shorthands[longhand];
997 } 999 }
998 } 1000 }
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