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

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

Issue 136153003: DevTools: [Styles] Add all known unicode-bidi values to CSSMetadata (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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 | 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 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 "font-family": { values: [ 425 "font-family": { values: [
426 "serif", "sans-serif", "cursive", "fantasy", "monospace", "-webkit-body" , "-webkit-pictograph" 426 "serif", "sans-serif", "cursive", "fantasy", "monospace", "-webkit-body" , "-webkit-pictograph"
427 ] }, 427 ] },
428 "text-overflow-mode": { values: [ 428 "text-overflow-mode": { values: [
429 "clip", "ellipsis" 429 "clip", "ellipsis"
430 ] }, 430 ] },
431 "border-bottom-style": { values: [ 431 "border-bottom-style": { values: [
432 "none", "hidden", "inset", "groove", "ridge", "outset", "dotted", "dashe d", "solid", "double" 432 "none", "hidden", "inset", "groove", "ridge", "outset", "dotted", "dashe d", "solid", "double"
433 ] }, 433 ] },
434 "unicode-bidi": { values: [ 434 "unicode-bidi": { values: [
435 "normal", "bidi-override", "embed" 435 "normal", "bidi-override", "embed", "isolate", "isolate-override", "plai ntext"
436 ] }, 436 ] },
437 "clip-rule": { values: [ 437 "clip-rule": { values: [
438 "nonzero", "evenodd" 438 "nonzero", "evenodd"
439 ] }, 439 ] },
440 "margin-left": { values: [ 440 "margin-left": { values: [
441 "auto" 441 "auto"
442 ] }, 442 ] },
443 "margin-top": { values: [ 443 "margin-top": { values: [
444 "auto" 444 "auto"
445 ] }, 445 ] },
(...skipping 545 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 | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698