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

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

Issue 146773002: [CSS Grid Layout] Rename grid-definition-{columns|rows} to match the new syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed renaming issues with some tests. Created 6 years, 10 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 | « Source/core/rendering/style/StyleGridData.cpp ('k') | 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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 "background-repeat-y": { m: "background" }, 654 "background-repeat-y": { m: "background" },
655 "border-top": { m: "background" }, 655 "border-top": { m: "background" },
656 "border-right": { m: "background" }, 656 "border-right": { m: "background" },
657 "border-bottom": { m: "background" }, 657 "border-bottom": { m: "background" },
658 "border-left": { m: "background" }, 658 "border-left": { m: "background" },
659 "border-radius": { m: "background" }, 659 "border-radius": { m: "background" },
660 "bottom": { m: "visuren" }, 660 "bottom": { m: "visuren" },
661 "color": { m: "color", a: "foreground" }, 661 "color": { m: "color", a: "foreground" },
662 "counter-increment": { m: "generate" }, 662 "counter-increment": { m: "generate" },
663 "counter-reset": { m: "generate" }, 663 "counter-reset": { m: "generate" },
664 "grid-definition-columns": { m: "grid" }, 664 "grid-template-columns": { m: "grid" },
665 "grid-definition-rows": { m: "grid" }, 665 "grid-template-rows": { m: "grid" },
666 "height": { m: "box" }, 666 "height": { m: "box" },
667 "image-orientation": { m: "images" }, 667 "image-orientation": { m: "images" },
668 "left": { m: "visuren" }, 668 "left": { m: "visuren" },
669 "list-style": { m: "lists" }, 669 "list-style": { m: "lists" },
670 "min-height": { m: "box" }, 670 "min-height": { m: "box" },
671 "min-width": { m: "box" }, 671 "min-width": { m: "box" },
672 "opacity": { m: "color", a: "transparency" }, 672 "opacity": { m: "color", a: "transparency" },
673 "orphans": { m: "page" }, 673 "orphans": { m: "page" },
674 "outline-offset": { m: "ui" }, 674 "outline-offset": { m: "ui" },
675 "padding": { m: "box", a: "padding1" }, 675 "padding": { m: "box", a: "padding1" },
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
991 991
992 /** 992 /**
993 * @param {string} longhand 993 * @param {string} longhand
994 * @return {?Array.<string>} 994 * @return {?Array.<string>}
995 */ 995 */
996 shorthands: function(longhand) 996 shorthands: function(longhand)
997 { 997 {
998 return this._shorthands[longhand]; 998 return this._shorthands[longhand];
999 } 999 }
1000 } 1000 }
OLDNEW
« no previous file with comments | « Source/core/rendering/style/StyleGridData.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698