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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sdk/CSSMetadata.js

Issue 2091333002: DevTools: Added "none" to list of suggestions for CSS text-decoration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « 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 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 "margin-after-collapse": { values: [ 422 "margin-after-collapse": { values: [
423 "collapse", "separate", "discard" 423 "collapse", "separate", "discard"
424 ] }, 424 ] },
425 "page-break-before": { values: [ 425 "page-break-before": { values: [
426 "left", "right", "auto", "always", "avoid" 426 "left", "right", "auto", "always", "avoid"
427 ] }, 427 ] },
428 "border-image": { values: [ 428 "border-image": { values: [
429 "repeat", "stretch" 429 "repeat", "stretch"
430 ] }, 430 ] },
431 "text-decoration": { values: [ 431 "text-decoration": { values: [
432 "blink", "line-through", "overline", "underline" 432 "none", "blink", "line-through", "overline", "underline"
433 ] }, 433 ] },
434 "position": { values: [ 434 "position": { values: [
435 "absolute", "fixed", "relative", "static" 435 "absolute", "fixed", "relative", "static"
436 ] }, 436 ] },
437 "font-family": { values: [ 437 "font-family": { values: [
438 "serif", "sans-serif", "cursive", "fantasy", "monospace", "-webkit-body" , "-webkit-pictograph" 438 "serif", "sans-serif", "cursive", "fantasy", "monospace", "-webkit-body" , "-webkit-pictograph"
439 ] }, 439 ] },
440 "text-overflow-mode": { values: [ 440 "text-overflow-mode": { values: [
441 "clip", "ellipsis" 441 "clip", "ellipsis"
442 ] }, 442 ] },
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
1084 * @param {string} longhand 1084 * @param {string} longhand
1085 * @return {?Array.<string>} 1085 * @return {?Array.<string>}
1086 */ 1086 */
1087 shorthands: function(longhand) 1087 shorthands: function(longhand)
1088 { 1088 {
1089 return this._shorthands[longhand]; 1089 return this._shorthands[longhand];
1090 } 1090 }
1091 } 1091 }
1092 1092
1093 WebInspector.CSSMetadata.initializeWithSupportedProperties([]); 1093 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