content/base/test/test_bug371576-4.html

Wed, 31 Dec 2014 07:53:36 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:53:36 +0100
branch
TOR_BUG_3246
changeset 5
4ab42b5ab56c
permissions
-rw-r--r--

Correct small whitespace inconsistency, lost while renaming variables.

     1 <html>
     2 <!--
     3 https://bugzilla.mozilla.org/show_bug.cgi?id=371576
     4 -->
     5 <head>
     6   <title>Test2 for Bug 371576</title>
     7   <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>        
     8   <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
    10 <script>
    12 var _bShouldbeThere = false;
    13 var oScript = document.createElement('script');
    14 oScript.innerHTML = '_bShouldbeThere = true';
    15 document.getElementsByTagName('head')[0].appendChild(oScript);
    16 ok(_bShouldbeThere,"_bShouldbeThere is true, script has executed on time");
    18 </script>
    20 </head>
    21 </html>

mercurial