blob: 98a446b5075d4f7be58889f214e03d0a45b27053 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
/* import-globals-from browser_content_sandbox_utils.js */
"use strict";
//
// Just test that browser does not die on empty env var
//
add_task(async function() {
ok(true, "Process can run");
});
|