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

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

Issue 2667763004: DevTools: add sticky position to CSS completions (Closed)
Patch Set: Created 3 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 | « 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 'border-top-style': 582 'border-top-style':
583 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']}, 583 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']},
584 'line-height': {values: ['normal']}, 584 'line-height': {values: ['normal']},
585 'text-overflow': {values: ['clip', 'ellipsis']}, 585 'text-overflow': {values: ['clip', 'ellipsis']},
586 'overflow-wrap': {values: ['normal', 'break-word']}, 586 'overflow-wrap': {values: ['normal', 'break-word']},
587 'box-direction': {values: ['normal', 'reverse']}, 587 'box-direction': {values: ['normal', 'reverse']},
588 'margin-after-collapse': {values: ['collapse', 'separate', 'discard']}, 588 'margin-after-collapse': {values: ['collapse', 'separate', 'discard']},
589 'page-break-before': {values: ['left', 'right', 'auto', 'always', 'avoid']}, 589 'page-break-before': {values: ['left', 'right', 'auto', 'always', 'avoid']},
590 'border-image': {values: ['repeat', 'stretch']}, 590 'border-image': {values: ['repeat', 'stretch']},
591 'text-decoration': {values: ['none', 'blink', 'line-through', 'overline', 'und erline']}, 591 'text-decoration': {values: ['none', 'blink', 'line-through', 'overline', 'und erline']},
592 'position': {values: ['absolute', 'fixed', 'relative', 'static']}, 592 'position': {values: ['absolute', 'fixed', 'relative', 'static', 'sticky']},
593 'font-family': 593 'font-family':
594 {values: ['serif', 'sans-serif', 'cursive', 'fantasy', 'monospace', '-webk it-body', '-webkit-pictograph']}, 594 {values: ['serif', 'sans-serif', 'cursive', 'fantasy', 'monospace', '-webk it-body', '-webkit-pictograph']},
595 'text-overflow-mode': {values: ['clip', 'ellipsis']}, 595 'text-overflow-mode': {values: ['clip', 'ellipsis']},
596 'border-bottom-style': 596 'border-bottom-style':
597 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']}, 597 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']},
598 'unicode-bidi': {values: ['normal', 'bidi-override', 'embed', 'isolate', 'isol ate-override', 'plaintext']}, 598 'unicode-bidi': {values: ['normal', 'bidi-override', 'embed', 'isolate', 'isol ate-override', 'plaintext']},
599 'clip-rule': {values: ['nonzero', 'evenodd']}, 599 'clip-rule': {values: ['nonzero', 'evenodd']},
600 'margin-left': {values: ['auto']}, 600 'margin-left': {values: ['auto']},
601 'margin-top': {values: ['auto']}, 601 'margin-top': {values: ['auto']},
602 'zoom': {values: ['normal', 'document', 'reset']}, 602 'zoom': {values: ['normal', 'document', 'reset']},
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
951 'widows': 115, 951 'widows': 115,
952 'width': 268, 952 'width': 268,
953 'will-change': 74, 953 'will-change': 74,
954 'word-break': 166, 954 'word-break': 166,
955 'word-spacing': 157, 955 'word-spacing': 157,
956 'word-wrap': 197, 956 'word-wrap': 197,
957 'writing-mode': 41, 957 'writing-mode': 41,
958 'z-index': 239, 958 'z-index': 239,
959 'zoom': 200 959 'zoom': 200
960 }; 960 };
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