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

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

Issue 604683003: Revert of Ship image-rendering: pixelated to stable. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 | Source/platform/RuntimeEnabledFeatures.in » ('j') | 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 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 "display": { values: [ 396 "display": { values: [
397 "none", "inline", "block", "list-item", "run-in", "compact", "inline-blo ck", "table", "inline-table", 397 "none", "inline", "block", "list-item", "run-in", "compact", "inline-blo ck", "table", "inline-table",
398 "table-row-group", "table-header-group", "table-footer-group", "table-ro w", "table-column-group", 398 "table-row-group", "table-header-group", "table-footer-group", "table-ro w", "table-column-group",
399 "table-column", "table-cell", "table-caption", "-webkit-box", "-webkit-i nline-box", 399 "table-column", "table-cell", "table-caption", "-webkit-box", "-webkit-i nline-box",
400 "flex", "inline-flex", "grid", "inline-grid" 400 "flex", "inline-flex", "grid", "inline-grid"
401 ] }, 401 ] },
402 "-webkit-text-emphasis-position": { values: [ 402 "-webkit-text-emphasis-position": { values: [
403 "over", "under" 403 "over", "under"
404 ] }, 404 ] },
405 "image-rendering": { values: [ 405 "image-rendering": { values: [
406 "auto", "optimizeSpeed", "optimizeQuality", "pixelated" 406 "auto", "optimizeSpeed", "optimizeQuality"
407 ] }, 407 ] },
408 "alignment-baseline": { values: [ 408 "alignment-baseline": { values: [
409 "baseline", "middle", "auto", "before-edge", "after-edge", "central", "t ext-before-edge", "text-after-edge", 409 "baseline", "middle", "auto", "before-edge", "after-edge", "central", "t ext-before-edge", "text-after-edge",
410 "ideographic", "alphabetic", "hanging", "mathematical" 410 "ideographic", "alphabetic", "hanging", "mathematical"
411 ] }, 411 ] },
412 "outline-width": { values: [ 412 "outline-width": { values: [
413 "medium", "thick", "thin" 413 "medium", "thick", "thin"
414 ] }, 414 ] },
415 "text-line-through-width": { values: [ 415 "text-line-through-width": { values: [
416 "normal", "medium", "auto", "thick", "thin" 416 "normal", "medium", "auto", "thick", "thin"
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
1023 * @param {string} longhand 1023 * @param {string} longhand
1024 * @return {?Array.<string>} 1024 * @return {?Array.<string>}
1025 */ 1025 */
1026 shorthands: function(longhand) 1026 shorthands: function(longhand)
1027 { 1027 {
1028 return this._shorthands[longhand]; 1028 return this._shorthands[longhand];
1029 } 1029 }
1030 } 1030 }
1031 1031
1032 WebInspector.CSSMetadata.initializeWithSupportedProperties([]); 1032 WebInspector.CSSMetadata.initializeWithSupportedProperties([]);
OLDNEW
« no previous file with comments | « no previous file | Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698