summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/events/Event-isTrusted.any.js
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/dom/events/Event-isTrusted.any.js')
-rw-r--r--testing/web-platform/tests/dom/events/Event-isTrusted.any.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/web-platform/tests/dom/events/Event-isTrusted.any.js b/testing/web-platform/tests/dom/events/Event-isTrusted.any.js
new file mode 100644
index 0000000000..00bcecd0ed
--- /dev/null
+++ b/testing/web-platform/tests/dom/events/Event-isTrusted.any.js
@@ -0,0 +1,11 @@
+test(function() {
+ var desc1 = Object.getOwnPropertyDescriptor(new Event("x"), "isTrusted");
+ assert_not_equals(desc1, undefined);
+ assert_equals(typeof desc1.get, "function");
+
+ var desc2 = Object.getOwnPropertyDescriptor(new Event("x"), "isTrusted");
+ assert_not_equals(desc2, undefined);
+ assert_equals(typeof desc2.get, "function");
+
+ assert_equals(desc1.get, desc2.get);
+});