Changeset 145707 in webkit
- Timestamp:
- Mar 13, 2013, 5:48:28 AM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r145706 r145707 1 2013-03-13 Andrey Lushnikov <lushnikov@chromium.org> 2 3 Web Inspector: [CodeMirror] token highlight still has some problems 4 https://bugs.webkit.org/show_bug.cgi?id=112173 5 6 Reviewed by Vsevolod Vlasov. 7 8 Use pseudo elements with borders to draw token highlight. 9 10 No new tests. 11 12 * inspector/front-end/cm/cmdevtools.css: 13 (.cm-token-highlight): 14 (.cm-token-highlight:before): 15 (.cm-line-with-selection .cm-column-with-selection:before): 16 1 17 2013-03-13 Alberto Garcia <agarcia@igalia.com> 2 18 -
trunk/Source/WebCore/inspector/front-end/cm/cmdevtools.css
r145530 r145707 52 52 53 53 .cm-token-highlight { 54 position: relative; 55 } 56 57 .cm-token-highlight:before { 58 position: absolute; 54 59 border: 1px solid gray; 55 60 border-radius: 3px; 56 margin: -1px; 61 top: 0px; 62 bottom: 0px; 63 left: 0px; 64 right: 0px; 65 content: ""; 57 66 } 58 67 59 .cm-line-with-selection .cm-column-with-selection {68 .cm-line-with-selection .cm-column-with-selection:before { 60 69 border: 0px; 61 margin: 0px;62 70 } 63 71
Note:
See TracChangeset
for help on using the changeset viewer.