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

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

Issue 612273002: Merge 182649 "Revert of Ship image-rendering: pixelated to stabl..." (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/2125/
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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 "display": { values: [ 377 "display": { values: [
378 "none", "inline", "block", "list-item", "run-in", "compact", "inline-blo ck", "table", "inline-table", 378 "none", "inline", "block", "list-item", "run-in", "compact", "inline-blo ck", "table", "inline-table",
379 "table-row-group", "table-header-group", "table-footer-group", "table-ro w", "table-column-group", 379 "table-row-group", "table-header-group", "table-footer-group", "table-ro w", "table-column-group",
380 "table-column", "table-cell", "table-caption", "-webkit-box", "-webkit-i nline-box", 380 "table-column", "table-cell", "table-caption", "-webkit-box", "-webkit-i nline-box",
381 "flex", "inline-flex", "grid", "inline-grid" 381 "flex", "inline-flex", "grid", "inline-grid"
382 ] }, 382 ] },
383 "-webkit-text-emphasis-position": { values: [ 383 "-webkit-text-emphasis-position": { values: [
384 "over", "under" 384 "over", "under"
385 ] }, 385 ] },
386 "image-rendering": { values: [ 386 "image-rendering": { values: [
387 "auto", "optimizeSpeed", "optimizeQuality", "pixelated" 387 "auto", "optimizeSpeed", "optimizeQuality"
388 ] }, 388 ] },
389 "alignment-baseline": { values: [ 389 "alignment-baseline": { values: [
390 "baseline", "middle", "auto", "before-edge", "after-edge", "central", "t ext-before-edge", "text-after-edge", 390 "baseline", "middle", "auto", "before-edge", "after-edge", "central", "t ext-before-edge", "text-after-edge",
391 "ideographic", "alphabetic", "hanging", "mathematical" 391 "ideographic", "alphabetic", "hanging", "mathematical"
392 ] }, 392 ] },
393 "outline-width": { values: [ 393 "outline-width": { values: [
394 "medium", "thick", "thin" 394 "medium", "thick", "thin"
395 ] }, 395 ] },
396 "box-align": { values: [ 396 "box-align": { values: [
397 "baseline", "center", "stretch", "start", "end" 397 "baseline", "center", "stretch", "start", "end"
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
995 * @param {string} longhand 995 * @param {string} longhand
996 * @return {?Array.<string>} 996 * @return {?Array.<string>}
997 */ 997 */
998 shorthands: function(longhand) 998 shorthands: function(longhand)
999 { 999 {
1000 return this._shorthands[longhand]; 1000 return this._shorthands[longhand];
1001 } 1001 }
1002 } 1002 }
1003 1003
1004 WebInspector.CSSMetadata.initializeWithSupportedProperties([]); 1004 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