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

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

Issue 806413006: Ship image-rendering: pixelated to stable. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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 | 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 "display": { values: [ 340 "display": { values: [
341 "none", "inline", "block", "list-item", "run-in", "compact", "inline-blo ck", "table", "inline-table", 341 "none", "inline", "block", "list-item", "run-in", "compact", "inline-blo ck", "table", "inline-table",
342 "table-row-group", "table-header-group", "table-footer-group", "table-ro w", "table-column-group", 342 "table-row-group", "table-header-group", "table-footer-group", "table-ro w", "table-column-group",
343 "table-column", "table-cell", "table-caption", "-webkit-box", "-webkit-i nline-box", 343 "table-column", "table-cell", "table-caption", "-webkit-box", "-webkit-i nline-box",
344 "flex", "inline-flex", "grid", "inline-grid" 344 "flex", "inline-flex", "grid", "inline-grid"
345 ] }, 345 ] },
346 "-webkit-text-emphasis-position": { values: [ 346 "-webkit-text-emphasis-position": { values: [
347 "over", "under" 347 "over", "under"
348 ] }, 348 ] },
349 "image-rendering": { values: [ 349 "image-rendering": { values: [
350 "auto", "optimizeSpeed", "optimizeQuality" 350 "auto", "optimizeSpeed", "optimizeQuality", "pixelated"
351 ] }, 351 ] },
352 "alignment-baseline": { values: [ 352 "alignment-baseline": { values: [
353 "baseline", "middle", "auto", "before-edge", "after-edge", "central", "t ext-before-edge", "text-after-edge", 353 "baseline", "middle", "auto", "before-edge", "after-edge", "central", "t ext-before-edge", "text-after-edge",
354 "ideographic", "alphabetic", "hanging", "mathematical" 354 "ideographic", "alphabetic", "hanging", "mathematical"
355 ] }, 355 ] },
356 "outline-width": { values: [ 356 "outline-width": { values: [
357 "medium", "thick", "thin" 357 "medium", "thick", "thin"
358 ] }, 358 ] },
359 "box-align": { values: [ 359 "box-align": { values: [
360 "baseline", "center", "stretch", "start", "end" 360 "baseline", "center", "stretch", "start", "end"
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
955 * @param {string} longhand 955 * @param {string} longhand
956 * @return {?Array.<string>} 956 * @return {?Array.<string>}
957 */ 957 */
958 shorthands: function(longhand) 958 shorthands: function(longhand)
959 { 959 {
960 return this._shorthands[longhand]; 960 return this._shorthands[longhand];
961 } 961 }
962 } 962 }
963 963
964 WebInspector.CSSMetadata.initializeWithSupportedProperties([]); 964 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