0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-16 18:05:18 +00:00
phpv8/tests/issue_306_basic.phpt
2017-04-14 22:48:39 +02:00

28 lines
667 B
PHP

--TEST--
Test V8::executeString() : Issue #306 V8 crashing on toLocaleString()
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$v8 = new V8Js();
$expr = 'new Date("10/11/2009").toLocaleString("en-us", { month: "long" });';
$result = $v8->executeString($expr);
// V8 can be compiled with i18n support and without;
// without i18n support however toLocaleString doesn't really work,
// it just returns the date string...
if ($result === 'October') {
var_dump(true);
} else {
$expr = 'new Date("10/11/2009").toString();';
var_dump($v8->executeString($expr) === $result);
}
?>
===EOF===
--EXPECT--
bool(true)
===EOF===