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

Side by Side Diff: Source/core/xml/DocumentXMLTreeViewer.css

Issue 755883004: [Blink-in-JS] 'Import' function to load sub-modules and other resources for private scripts (Part-1) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Corrected include order Created 6 years 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 | public/blink_resources.grd » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* Copyright 2014 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6 div.header {
7 border-bottom: 2px solid black;
8 padding-bottom: 5px;
9 margin: 10px;
10 }
11
12 div.collapsible > div.hidden {
13 display:none;
14 }
15
16 .pretty-print {
17 margin-top: 1em;
18 margin-left: 20px;
19 font-family: monospace;
20 font-size: 13px;
21 }
22
23 #webkit-xml-viewer-source-xml {
24 display: none;
25 }
26
27 .collapsible-content {
28 margin-left: 1em;
29 }
30 .comment {
31 white-space: pre;
32 }
33
34 .button {
35 -webkit-user-select: none;
36 cursor: pointer;
37 display: inline-block;
38 margin-left: -10px;
39 width: 10px;
40 background-repeat: no-repeat;
41 background-position: left top;
42 vertical-align: bottom;
43 }
44
45 .collapse-button {
46 background-image: -webkit-canvas(arrowDown);
47 height: 10px;
48 }
49
50 .expand-button {
51 background-image: -webkit-canvas(arrowRight);
52 height: 11px;
53 }
OLDNEW
« no previous file with comments | « no previous file | public/blink_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698