browser/devtools/framework/connect/connect.xhtml

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     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/. -->
     6 <!DOCTYPE html [
     7 <!ENTITY % connectionDTD SYSTEM "chrome://browser/locale/devtools/connection-screen.dtd" >
     8  %connectionDTD;
     9 ]>
    11 <html xmlns="http://www.w3.org/1999/xhtml"
    12       xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
    13   <head>
    14     <title>&title;</title>
    15     <link rel="stylesheet" href="chrome://browser/skin/devtools/dark-theme.css" type="text/css"/>
    16     <link rel="stylesheet" href="chrome://browser/content/devtools/connect.css" type="text/css"/>
    17     <script type="application/javascript;version=1.8" src="connect.js"></script>
    18   </head>
    19   <body>
    20     <h1>&header;</h1>
    21     <section id="connection-form">
    22       <form validate="validate" action="#">
    23         <label>
    24           <span>&host;</span>
    25           <input required="required" class="devtools-textinput" id="host" type="text"></input>
    26         </label>
    27         <label>
    28           <span>&port;</span>
    29           <input required="required" class="devtools-textinput" id="port" type="number" pattern="\d+"></input>
    30         </label>
    31         <label>
    32           <input class="devtools-toolbarbutton" id="submit" type="submit" value="&connect;"></input>
    33         </label>
    34       </form>
    35       <p class="error-message error-timeout">&errorTimeout;</p>
    36       <p class="error-message error-refused">&errorRefused;</p>
    37       <p class="error-message error-unexpected">&errorUnexpected;</p>
    38     </section>
    39     <section id="actors-list">
    40       <p>&availableTabs;</p>
    41       <ul class="actors" id="tabActors"></ul>
    42       <p>&availableAddons;</p>
    43       <ul class="actors" id="addonActors"></ul>
    44       <p>&availableProcesses;</p>
    45       <ul class="actors" id="globalActors"></ul>
    46     </section>
    47     <section id="connecting">
    48       <p><img src="chrome://browser/skin/tabbrowser/loading.png"></img> &connecting;</p>
    49     </section>
    50     <footer>&remoteHelp;<a target='_' href='https://developer.mozilla.org/docs/Tools/Remote_Debugging'>&remoteDocumentation;</a>&remoteHelpSuffix;</footer>
    51   </body>
    52 </html>

mercurial