tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test.xhtml (1271B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <?csp default-src chrome:; ?>
      3 
      4 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      5   - License, v. 2.0. If a copy of the MPL was not distributed with this
      6   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      7 
      8 <!-- Test file for a XUL window by using a XHTML document instead.  -->
      9 
     10 <!DOCTYPE html>
     11 
     12 <html
     13  xmlns="http://www.w3.org/1999/xhtml"
     14  id="remote-window"
     15  windowtype="remote:xhtml"
     16 >
     17  <head>
     18    <title>Test Window</title>
     19    <link rel="stylesheet" href="chrome://global/skin/global.css" />
     20    <link rel="stylesheet" href="chrome://marionette-chrome/content/style.css" />
     21  </head>
     22 
     23  <body>
     24    <div id="types" class="flex-column">
     25      <input id="textInput" size="6" value="test" label="input" />
     26      <input type="checkbox" id="testBox" label="box" />
     27      <button id="button" class="foo" label="button" />
     28      <button id="options-button" label="options" />
     29    </div>
     30 
     31    <div id="frames" class="flex-column">
     32      <iframe
     33        id="iframe"
     34        src="chrome://marionette-chrome/content/test_iframe.xhtml"
     35      />
     36      <iframe
     37        id="iframe-nested"
     38        src="chrome://marionette-chrome/content/test_nested_iframe.xhtml"
     39      />
     40    </div>
     41  </body>
     42 </html>