2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: The parseFloat property has not prototype property
|
2017-06-29 17:24:37 +02:00
|
|
|
esid: sec-parsefloat-string
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Checking parseFloat.prototype
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
//CHECK#1
|
|
|
|
if (parseFloat.prototype !== undefined) {
|
2021-07-29 06:16:21 +02:00
|
|
|
throw new Test262Error('#1: parseFloat.prototype === undefined. Actual: ' + (parseFloat.prototype));
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|