Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <!DOCTYPE html>
2 <head>
3 <meta charset="UTF-8">
4 <title>Mochitest Robotium Javascript Test Harness</title>
5 <link rel="author" title="nalexander" href="mailto:nalexander@mozilla.com">
6 <script type="application/javascript;version=1.8" src="robocop_testharness.js"></script>
7 <script>
8 var param = /[&?]path=([^&]+)/.exec(location.search);
9 if (param) {
10 // We encode so that absolute URLs can be provided. Since the
11 // encoding of a relative filename is just the filename, no special
12 // processing is needed for the most common case.
13 var src = decodeURIComponent(param[1]);
14 document.title = src;
16 // Provided by robocop_testharness.js.
17 testOneFile(src);
18 }
19 </script>
20 </head>