blob: dedda973b2063b0390040b40556073c09236983b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2013 Mozilla Corporation. All rights reserved.
// This code is governed by the license found in the LICENSE file.
/**
* @description Tests that Intl has Object.prototype as its prototype.
* @author Norbert Lindenberg
*/
if (Object.getPrototypeOf(Intl) !== Object.prototype) {
$ERROR("Intl doesn't have Object.prototype as its prototype.");
}
|