summaryrefslogtreecommitdiffstats
path: root/dom/encoding/test/file_stringencoding.jsm
diff options
context:
space:
mode:
Diffstat (limited to 'dom/encoding/test/file_stringencoding.jsm')
-rw-r--r--dom/encoding/test/file_stringencoding.jsm6
1 files changed, 6 insertions, 0 deletions
diff --git a/dom/encoding/test/file_stringencoding.jsm b/dom/encoding/test/file_stringencoding.jsm
new file mode 100644
index 000000000..cf5542170
--- /dev/null
+++ b/dom/encoding/test/file_stringencoding.jsm
@@ -0,0 +1,6 @@
+this.EXPORTED_SYMBOLS = ['checkFromJSM'];
+
+this.checkFromJSM = function checkFromJSM(is_op) {
+ is_op(new TextDecoder().encoding, "utf-8", "JSM should have TextDecoder");
+ is_op(new TextEncoder().encoding, "utf-8", "JSM should have TextEncoder");
+}