haikuwebkit/LayoutTests/js/script-tests/regress-155917.js

12 lines
334 B
JavaScript

description(
"Regression test for https://webkit.org/b/155917. This test should run without throwing an exception."
);
Object.create = function() {
throw "User defined Object.create should not be used by Date.prototype methods.";
};
(new Date).toLocaleString();
(new Date).toLocaleDateString();
(new Date).toLocaleTimeString();