mirror of https://github.com/tc39/test262.git
13 lines
373 B
JavaScript
13 lines
373 B
JavaScript
// Copyright 2013 Mozilla Corporation. All rights reserved.
|
|
// This code is governed by the license found in the LICENSE file.
|
|
|
|
/*---
|
|
es5id: 8.0
|
|
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.");
|
|
}
|