summaryrefslogtreecommitdiffstats
path: root/dom/encoding/test/file_stringencoding.jsm
diff options
context:
space:
mode:
Diffstat (limited to '')
-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 0000000000..2d8312c607
--- /dev/null
+++ b/dom/encoding/test/file_stringencoding.jsm
@@ -0,0 +1,6 @@
+var EXPORTED_SYMBOLS = ["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");
+}