browser/devtools/markupview/markup-view.xhtml

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

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

mercurial