js/xpconnect/tests/chrome/test_bug596580.xul

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

     1 <?xml version="1.0"?>
     2 <?xml-stylesheet href="chrome://global/skin" type="text/css"?>
     3 <?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css"
     4                  type="text/css"?>
     5 <window title="Mozilla Bug 596580"
     6   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
     7   <script type="application/javascript"
     8           src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
    10   <!-- test results are displayed in the html:body -->
    11   <body xmlns="http://www.w3.org/1999/xhtml">
    12   <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=596580"
    13      target="_blank">Mozilla Bug 596580</a>
    14   </body>
    16   <!-- test code goes here -->
    17   <script type="application/x-javascript;version=1.8"><![CDATA[
    18     function init() {
    19       var f = new Function("let test = 'let is ok'; return test;");
    20       is(f(), 'let is ok', 'let should be ok');
    21       SimpleTest.finish();
    22     }
    24     Test = {
    25       include: function(p) {
    26 	var sawError = false;
    27 	try {
    28 	  Components.classes["@mozilla.org/moz/jssubscript-loader;1"].
    29 	    getService(Components.interfaces["mozIJSSubScriptLoader"]).
    30 	    loadSubScript(p);
    31 	} catch (e) {
    32 	  sawError = true;
    33 	}
    34 	ok(sawError, 'should receive an error loading a not-found file');
    35       }
    36     };
    38     // If the include method is defined as a global function, it works.
    39     // try to load a non existing file to produce the error
    40     Test.include("notfound.js");
    42     // If init is called directly, it works.
    43     setTimeout('init();', 0);
    45     SimpleTest.waitForExplicitFinish();
    47   ]]></script>
    48 </window>

mercurial