summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/seal/object-seal-is-a-function.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/test262/built-ins/Object/seal/object-seal-is-a-function.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Object/seal/object-seal-is-a-function.js b/js/src/tests/test262/built-ins/Object/seal/object-seal-is-a-function.js
new file mode 100644
index 0000000000..0a596994e3
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Object/seal/object-seal-is-a-function.js
@@ -0,0 +1,11 @@
+// Copyright (c) 2012 Ecma International. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-object.seal
+description: Object.seal is a function
+---*/
+
+assert.sameValue(typeof Object.seal, "function", 'typeof(f)');
+
+reportCompare(0, 0);