mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-01 05:41:01 +00:00
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
|
|
load("test-common.js");
|
||
|
|
|
||
|
|
try {
|
||
|
|
// Ensuring it's the same function as the global
|
||
|
|
// parseFloat() is enough as that already has tests :^)
|
||
|
|
assert(Number.parseFloat === parseFloat);
|
||
|
|
|
||
|
|
console.log("PASS");
|
||
|
|
} catch (e) {
|
||
|
|
console.log("FAIL: " + e);
|
||
|
|
}
|