This commit is contained in:
Bobby Holley 2014-06-05 22:32:36 -07:00
Родитель 1a478c5c5d
Коммит 6cdd30ff08
2 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,16 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
const Cu = Components.utils;
function run_test() {
let sb = new Cu.Sandbox(this);
var called = false;
Cu.exportFunction(function(str) { do_check_true(str, "someString"); called = true; },
sb, { defineAs: "func" });
// Do something weird with the string to make sure that it doesn't get interned.
Cu.evalInSandbox("var str = 'someString'; for (var i = 0; i < 10; ++i) str += i;", sb);
Cu.evalInSandbox("func(str);", sb);
do_check_true(called);
}

Просмотреть файл

@ -42,6 +42,7 @@ support-files =
[test_bug961054.js]
[test_bug976151.js]
[test_bug1001094.js]
[test_bug1021312.js]
[test_bug_442086.js]
[test_file.js]
[test_blob.js]