summaryrefslogtreecommitdiffstats
path: root/js/src/jsapi-tests/testSourcePolicy.cpp
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /js/src/jsapi-tests/testSourcePolicy.cpp
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'js/src/jsapi-tests/testSourcePolicy.cpp')
-rw-r--r--js/src/jsapi-tests/testSourcePolicy.cpp42
1 files changed, 42 insertions, 0 deletions
diff --git a/js/src/jsapi-tests/testSourcePolicy.cpp b/js/src/jsapi-tests/testSourcePolicy.cpp
new file mode 100644
index 000000000..6614fe7b2
--- /dev/null
+++ b/js/src/jsapi-tests/testSourcePolicy.cpp
@@ -0,0 +1,42 @@
+/* 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/. */
+
+#include "jsscript.h"
+
+#include "jsapi-tests/tests.h"
+
+BEGIN_TEST(testBug795104)
+{
+ JS::CompileOptions opts(cx);
+ JS::CompartmentBehaviorsRef(cx->compartment()).setDiscardSource(true);
+
+ const size_t strLen = 60002;
+ char* s = static_cast<char*>(JS_malloc(cx, strLen));
+ CHECK(s);
+
+ s[0] = '"';
+ memset(s + 1, 'x', strLen - 2);
+ s[strLen - 1] = '"';
+
+ // We don't want an rval for our Evaluate call
+ opts.setNoScriptRval(true);
+
+ JS::RootedValue unused(cx);
+ CHECK(JS::Evaluate(cx, opts, s, strLen, &unused));
+
+ JS::RootedFunction fun(cx);
+ JS::AutoObjectVector emptyScopeChain(cx);
+
+ // But when compiling a function we don't want to use no-rval
+ // mode, since it's not supported for functions.
+ opts.setNoScriptRval(false);
+
+ CHECK(JS::CompileFunction(cx, emptyScopeChain, opts, "f", 0, nullptr, s, strLen, &fun));
+ CHECK(fun);
+
+ JS_free(cx, s);
+
+ return true;
+}
+END_TEST(testBug795104)