browser/devtools/markupview/markup-view.xhtml

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:58bfb3ed6a9b
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3 - License, v. 2.0. If a copy of the MPL was not distributed with this
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
5 <!DOCTYPE html>
6
7 <html xmlns="http://www.w3.org/1999/xhtml">
8 <head>
9 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
10 <link rel="stylesheet" href="chrome://browser/content/devtools/markup-view.css" type="text/css"/>
11 <link rel="stylesheet" href="chrome://browser/skin/devtools/markup-view.css" type="text/css"/>
12 <link rel="stylesheet" href="chrome://browser/skin/devtools/common.css" type="text/css"/>
13
14 <script type="application/javascript;version=1.8"
15 src="chrome://browser/content/devtools/theme-switching.js"/>
16
17 </head>
18 <body class="theme-body devtools-monospace" role="application">
19 <div id="root-wrapper">
20 <div id="root"></div>
21 </div>
22 <div id="templates" style="display:none">
23
24 <ul class="children">
25 <li id="template-container" save="${elt}" class="child collapsed">
26 <div save="${tagLine}" class="tag-line"><span save="${tagState}" class="tag-state"></span><span save="${expander}" class="theme-twisty expander"></span></div>
27 <ul save="${children}" class="children"></ul>
28 </li>
29
30 <li id="template-more-nodes" class="more-nodes devtools-class-comment" save="${elt}"><span>${showing}</span> <button href="#" onclick="${allButtonClick}">${showAll}</button></li>
31 </ul>
32
33 <span id="template-element" save="${elt}" class="editor"><span class="open">&lt;<span save="${tag}" class="tag theme-fg-color3" tabindex="0"></span><span save="${attrList}"></span><span save="${newAttr}" class="newattr" tabindex="0"></span><span class="closing-bracket">&gt;</span></span><span class="close">&lt;/<span save="${closeTag}" class="tag theme-fg-color3"></span>&gt;</span></span>
34
35 <span id="template-attribute" save="${attr}" data-attr="${attrName}" class="attreditor" style="display:none"> <span class="editable" save="${inner}" tabindex="0"><span save="${name}" class="attr-name theme-fg-color2"></span>=&quot;<span save="${val}" class="attr-value theme-fg-color6"></span>&quot;</span></span>
36
37 <span id="template-text" save="${elt}" class="editor text">
38 <pre save="${value}" style="display:inline-block;" tabindex="0"></pre>
39 </span>
40
41 <span id="template-comment" save="${elt}" class="editor comment theme-comment"><span>&lt;!--</span><pre save="${value}" style="display:inline-block;" tabindex="0"></pre><span>--&gt;</span></span>
42
43 <!-- span id="template-elementClose" save="${closeElt}">&lt;/<span save="${closeTag}" class="tagname theme-fg-color3"></span>&gt;</span -->
44
45 </div>
46 <div id="previewbar" class="disabled">
47 <div id="preview"/>
48 <div id="viewbox"/>
49 </div>
50 </body>
51 </html>

mercurial