summaryrefslogtreecommitdiffstats
path: root/widget/tests/file_test_clipboard.js
diff options
context:
space:
mode:
Diffstat (limited to 'widget/tests/file_test_clipboard.js')
-rw-r--r--widget/tests/file_test_clipboard.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/widget/tests/file_test_clipboard.js b/widget/tests/file_test_clipboard.js
index 76bdbaa84d..4e720b6383 100644
--- a/widget/tests/file_test_clipboard.js
+++ b/widget/tests/file_test_clipboard.js
@@ -149,5 +149,20 @@ clipboardTypes.forEach(function (clipboardType) {
// Clear all clipboard data.
cleanupAllClipboard();
});
+
+ add_task(function test_unsupport_flavor() {
+ try {
+ is(
+ getClipboardData("foo/bar", clipboardType),
+ null,
+ `Test getData for clipboard type ${clipboardType}`
+ );
+ } catch (e) {
+ ok(
+ false,
+ `getData should not throw error for clipboard type ${clipboardType}`
+ );
+ }
+ });
}
});