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

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

Issue 2443693003: Add parsing support for display: contents, and minimum behavior similar to display: none (Closed)
Patch Set: Add parsing support for display: contents, and minimum behavior similar to display: none Created 4 years, 1 month 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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 "fantasy", "monospace", "-webkit-body", "-webkit-pictograph" 448 "fantasy", "monospace", "-webkit-body", "-webkit-pictograph"
449 ] }, 449 ] },
450 "dominant-baseline": { values: [ 450 "dominant-baseline": { values: [
451 "middle", "auto", "central", "text-before-edge", "text-after-edge", "ide ographic", "alphabetic", "hanging", 451 "middle", "auto", "central", "text-before-edge", "text-after-edge", "ide ographic", "alphabetic", "hanging",
452 "mathematical", "use-script", "no-change", "reset-size" 452 "mathematical", "use-script", "no-change", "reset-size"
453 ] }, 453 ] },
454 "display": { values: [ 454 "display": { values: [
455 "none", "inline", "block", "list-item", "run-in", "inline-block", "table ", "inline-table", 455 "none", "inline", "block", "list-item", "run-in", "inline-block", "table ", "inline-table",
456 "table-row-group", "table-header-group", "table-footer-group", "table-ro w", "table-column-group", 456 "table-row-group", "table-header-group", "table-footer-group", "table-ro w", "table-column-group",
457 "table-column", "table-cell", "table-caption", "-webkit-box", "-webkit-i nline-box", 457 "table-column", "table-cell", "table-caption", "-webkit-box", "-webkit-i nline-box",
458 "flex", "inline-flex", "grid", "inline-grid" 458 "flex", "inline-flex", "grid", "inline-grid", "contents"
459 ] }, 459 ] },
460 "-webkit-text-emphasis-position": { values: [ 460 "-webkit-text-emphasis-position": { values: [
461 "over", "under" 461 "over", "under"
462 ] }, 462 ] },
463 "image-rendering": { values: [ 463 "image-rendering": { values: [
464 "auto", "optimizeSpeed", "optimizeQuality", "pixelated" 464 "auto", "optimizeSpeed", "optimizeQuality", "pixelated"
465 ] }, 465 ] },
466 "alignment-baseline": { values: [ 466 "alignment-baseline": { values: [
467 "baseline", "middle", "auto", "before-edge", "after-edge", "central", "t ext-before-edge", "text-after-edge", 467 "baseline", "middle", "auto", "before-edge", "after-edge", "central", "t ext-before-edge", "text-after-edge",
468 "ideographic", "alphabetic", "hanging", "mathematical" 468 "ideographic", "alphabetic", "hanging", "mathematical"
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
960 "widows": 115, 960 "widows": 115,
961 "width": 268, 961 "width": 268,
962 "will-change": 74, 962 "will-change": 74,
963 "word-break": 166, 963 "word-break": 166,
964 "word-spacing": 157, 964 "word-spacing": 157,
965 "word-wrap": 197, 965 "word-wrap": 197,
966 "writing-mode": 41, 966 "writing-mode": 41,
967 "z-index": 239, 967 "z-index": 239,
968 "zoom": 200 968 "zoom": 200
969 }; 969 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698