| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple 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 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 .webkit-html-tag { | 59 .webkit-html-tag { |
| 60 /* Keep this in sync with view-source.css (.webkit-html-tag) */ | 60 /* Keep this in sync with view-source.css (.webkit-html-tag) */ |
| 61 color: rgb(136, 18, 128); | 61 color: rgb(136, 18, 128); |
| 62 } | 62 } |
| 63 | 63 |
| 64 .webkit-html-pseudo-element { | 64 .webkit-html-pseudo-element { |
| 65 /* This one is non-standard. */ | 65 /* This one is non-standard. */ |
| 66 color: brown; | 66 color: brown; |
| 67 } | 67 } |
| 68 | 68 |
| 69 .webkit-html-text-node { |
| 70 unicode-bidi: -webkit-isolate; |
| 71 } |
| 72 |
| 69 .webkit-html-entity-value { | 73 .webkit-html-entity-value { |
| 70 /* This one is non-standard. */ | 74 /* This one is non-standard. */ |
| 71 background-color: rgba(0, 0, 0, 0.15); | 75 background-color: rgba(0, 0, 0, 0.15); |
| 76 unicode-bidi: -webkit-isolate; |
| 72 } | 77 } |
| 73 | 78 |
| 74 .webkit-html-doctype { | 79 .webkit-html-doctype { |
| 75 /* Keep this in sync with view-source.css (.webkit-html-doctype) */ | 80 /* Keep this in sync with view-source.css (.webkit-html-doctype) */ |
| 76 color: rgb(192, 192, 192); | 81 color: rgb(192, 192, 192); |
| 77 } | 82 } |
| 78 | 83 |
| 79 .webkit-html-attribute-name { | 84 .webkit-html-attribute-name { |
| 80 /* Keep this in sync with view-source.css (.webkit-html-attribute-name) */ | 85 /* Keep this in sync with view-source.css (.webkit-html-attribute-name) */ |
| 81 color: rgb(153, 69, 0); | 86 color: rgb(153, 69, 0); |
| 87 unicode-bidi: -webkit-isolate; |
| 82 } | 88 } |
| 83 | 89 |
| 84 .webkit-html-attribute-value { | 90 .webkit-html-attribute-value { |
| 85 /* Keep this in sync with view-source.css (.webkit-html-attribute-value) */ | 91 /* Keep this in sync with view-source.css (.webkit-html-attribute-value) */ |
| 86 color: rgb(26, 26, 166); | 92 color: rgb(26, 26, 166); |
| 93 unicode-bidi: -webkit-isolate; |
| 87 } | 94 } |
| 88 | 95 |
| 89 .webkit-html-external-link, | 96 .webkit-html-external-link, |
| 90 .webkit-html-resource-link { | 97 .webkit-html-resource-link { |
| 91 /* Keep this in sync with view-source.css (.webkit-html-external-link, .webk
it-html-resource-link) */ | 98 /* Keep this in sync with view-source.css (.webkit-html-external-link, .webk
it-html-resource-link) */ |
| 92 color: #00e; | 99 color: #00e; |
| 93 } | 100 } |
| 94 | 101 |
| 95 .webkit-html-external-link { | 102 .webkit-html-external-link { |
| 96 /* Keep this in sync with view-source.css (.webkit-html-external-link) */ | 103 /* Keep this in sync with view-source.css (.webkit-html-external-link) */ |
| 97 text-decoration: none; | 104 text-decoration: none; |
| 98 } | 105 } |
| 99 | 106 |
| 100 .webkit-html-external-link:hover { | 107 .webkit-html-external-link:hover { |
| 101 /* Keep this in sync with view-source.css (.webkit-html-external-link:hover)
*/ | 108 /* Keep this in sync with view-source.css (.webkit-html-external-link:hover)
*/ |
| 102 text-decoration: underline; | 109 text-decoration: underline; |
| 103 } | 110 } |
| 104 | 111 |
| 105 .webkit-html-end-of-file { | 112 .webkit-html-end-of-file { |
| 106 /* Keep this in sync with view-source.css (.webkit-html-end-of-file) */ | 113 /* Keep this in sync with view-source.css (.webkit-html-end-of-file) */ |
| 107 color: rgb(255, 0, 0); | 114 color: rgb(255, 0, 0); |
| 108 font-weight: bold; | 115 font-weight: bold; |
| 109 } | 116 } |
| OLD | NEW |