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

Unified 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, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | public/blink_resources.grd » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/DocumentXMLTreeViewer.css
diff --git a/Source/core/xml/DocumentXMLTreeViewer.css b/Source/core/xml/DocumentXMLTreeViewer.css
new file mode 100644
index 0000000000000000000000000000000000000000..93273c13423a7e05899ae30747ac8fda380c9c6a
--- /dev/null
+++ b/Source/core/xml/DocumentXMLTreeViewer.css
@@ -0,0 +1,53 @@
+/* Copyright 2014 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+div.header {
+ border-bottom: 2px solid black;
+ padding-bottom: 5px;
+ margin: 10px;
+}
+
+div.collapsible > div.hidden {
+ display:none;
+}
+
+.pretty-print {
+ margin-top: 1em;
+ margin-left: 20px;
+ font-family: monospace;
+ font-size: 13px;
+}
+
+#webkit-xml-viewer-source-xml {
+ display: none;
+}
+
+.collapsible-content {
+ margin-left: 1em;
+}
+.comment {
+ white-space: pre;
+}
+
+.button {
+ -webkit-user-select: none;
+ cursor: pointer;
+ display: inline-block;
+ margin-left: -10px;
+ width: 10px;
+ background-repeat: no-repeat;
+ background-position: left top;
+ vertical-align: bottom;
+}
+
+.collapse-button {
+ background-image: -webkit-canvas(arrowDown);
+ height: 10px;
+}
+
+.expand-button {
+ background-image: -webkit-canvas(arrowRight);
+ height: 11px;
+}
« 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