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

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

Issue 26363004: webkit prefix shoudn't be used for text-align-last (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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
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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 ] }, 588 ] },
589 "-webkit-line-break": { values: [ 589 "-webkit-line-break": { values: [
590 "auto", "loose", "normal", "strict" 590 "auto", "loose", "normal", "strict"
591 ] }, 591 ] },
592 "-webkit-perspective": { values: [ 592 "-webkit-perspective": { values: [
593 "none" 593 "none"
594 ] }, 594 ] },
595 "-webkit-perspective-origin": { values: [ 595 "-webkit-perspective-origin": { values: [
596 "left", "center", "right", "top", "bottom" 596 "left", "center", "right", "top", "bottom"
597 ] }, 597 ] },
598 "-webkit-text-align-last": { values: [ 598 "text-align-last": { values: [
599 "auto", "start", "end", "left", "right", "center", "justify" 599 "auto", "start", "end", "left", "right", "center", "justify"
600 ] }, 600 ] },
601 "-webkit-text-decoration-line": { values: [ 601 "-webkit-text-decoration-line": { values: [
602 "none", "underline", "overline", "line-through", "blink" 602 "none", "underline", "overline", "line-through", "blink"
603 ] }, 603 ] },
604 "-webkit-text-decoration-style": { values: [ 604 "-webkit-text-decoration-style": { values: [
605 "solid", "double", "dotted", "dashed", "wavy" 605 "solid", "double", "dotted", "dashed", "wavy"
606 ] }, 606 ] },
607 "-webkit-text-decoration-skip": { values: [ 607 "-webkit-text-decoration-skip": { values: [
608 "none", "objects", "spaces", "ink", "edges", "box-decoration" 608 "none", "objects", "spaces", "ink", "edges", "box-decoration"
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
970 970
971 /** 971 /**
972 * @param {string} longhand 972 * @param {string} longhand
973 * @return {?Array.<string>} 973 * @return {?Array.<string>}
974 */ 974 */
975 shorthands: function(longhand) 975 shorthands: function(longhand)
976 { 976 {
977 return this._shorthands[longhand]; 977 return this._shorthands[longhand];
978 } 978 }
979 } 979 }
OLDNEW
« no previous file with comments | « LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/script-tests/getComputedStyle-text-align-last.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698