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

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

Issue 2620623002: Implement display:flow-root (Closed)
Patch Set: bug 672508 Created 3 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
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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 values: [ 537 values: [
538 'middle', 'auto', 'central', 'text-before-edge', 'text-after-edge', 'ideog raphic', 'alphabetic', 'hanging', 538 'middle', 'auto', 'central', 'text-before-edge', 'text-after-edge', 'ideog raphic', 'alphabetic', 'hanging',
539 'mathematical', 'use-script', 'no-change', 'reset-size' 539 'mathematical', 'use-script', 'no-change', 'reset-size'
540 ] 540 ]
541 }, 541 },
542 'display': { 542 'display': {
543 values: [ 543 values: [
544 'none', 544 'none',
545 'inline', 545 'inline',
546 'block', 546 'block',
547 'flow-root',
547 'list-item', 548 'list-item',
548 'run-in', 549 'run-in',
549 'inline-block', 550 'inline-block',
550 'table', 551 'table',
551 'inline-table', 552 'inline-table',
552 'table-row-group', 553 'table-row-group',
553 'table-header-group', 554 'table-header-group',
554 'table-footer-group', 555 'table-footer-group',
555 'table-row', 556 'table-row',
556 'table-column-group', 557 'table-column-group',
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
949 'widows': 115, 950 'widows': 115,
950 'width': 268, 951 'width': 268,
951 'will-change': 74, 952 'will-change': 74,
952 'word-break': 166, 953 'word-break': 166,
953 'word-spacing': 157, 954 'word-spacing': 157,
954 'word-wrap': 197, 955 'word-wrap': 197,
955 'writing-mode': 41, 956 'writing-mode': 41,
956 'z-index': 239, 957 'z-index': 239,
957 'zoom': 200 958 'zoom': 200
958 }; 959 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698