browser/components/tabview/tabview.html

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

     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 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
     8 <head>
     9   <title>&nbsp;</title>
    10   <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
    11   <link rel="stylesheet" href="tabview.css" type="text/css"/>
    12   <link rel="stylesheet" href="chrome://browser/skin/tabview/tabview.css" type="text/css"/>
    13 </head>
    15 <body transparent="true">
    16   <div id="content">
    17     <div id="bg">
    18     </div>
    19     <div id="actions">
    20       <input id="exit-button" type="button" alt="" groups="0" />
    21       <input id="searchbutton" type="button"/>
    22     </div>
    23   </div>  
    25   <div id="searchshade"></div>
    26   <div id="search">
    27     <input id="searchbox" type="text"/>
    28     <div id="otherresults">
    29       <span class="label"></span>
    30       <span id="results"></span>
    31     </div>
    32   </div>
    34   <script type="text/javascript;version=1.8" src="tabview.js"></script>
    35 </body>
    36 </html>

mercurial