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

Side by Side Diff: Source/core/css/view-source.css

Issue 301813002: Highlight relfected XSS vectors in view-source page. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update descriptive text in test cases. Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 } 75 }
76 76
77 tbody:last-child .webkit-line-content:empty:before { 77 tbody:last-child .webkit-line-content:empty:before {
78 content: " "; 78 content: " ";
79 } 79 }
80 80
81 .webkit-line-content { 81 .webkit-line-content {
82 padding: 0 5px !important; 82 padding: 0 5px !important;
83 } 83 }
84 84
85 .webkit-highlight {
86 background-color: rgb(100%, 42%, 42%);
87 border: 2px solid rgb(100%, 31%, 31%);
88 }
89
85 .webkit-html-tag { 90 .webkit-html-tag {
86 /* Keep this in sync with inspector.css (.webkit-html-tag) */ 91 /* Keep this in sync with inspector.css (.webkit-html-tag) */
87 color: rgb(136, 18, 128); 92 color: rgb(136, 18, 128);
88 } 93 }
89 94
90 .webkit-html-attribute-name { 95 .webkit-html-attribute-name {
91 /* Keep this in sync with inspector.css (.webkit-html-attribute-name) */ 96 /* Keep this in sync with inspector.css (.webkit-html-attribute-name) */
92 color: rgb(153, 69, 0); 97 color: rgb(153, 69, 0);
93 } 98 }
94 99
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 .webkit-html-message-line { 158 .webkit-html-message-line {
154 padding-left: 23px; 159 padding-left: 23px;
155 text-indent: -20px; 160 text-indent: -20px;
156 } 161 }
157 162
158 .webkit-html-message-icon { 163 .webkit-html-message-icon {
159 position: relative; 164 position: relative;
160 top: 2px; 165 top: 2px;
161 margin: 0 4px; 166 margin: 0 4px;
162 } 167 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698