Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
8a2c8a97dfd3af0fdb68d49fc58e1163aca8085a
/
.
/
LayoutTests
/
js
/
script-tests
/
string-slice-abnormal-values.js
blob: 8ad39d9d0f58bcd800a76000b7c2e02be4702154 [
file
] [
log
] [
blame
]
description
(
"This test checks for handling of abnormal values passed to String.slice"
);
shouldBe
(
'"abc".slice(0)'
,
'"abc"'
);
shouldBe
(
'"abc".slice(0, Infinity)'
,
'"abc"'
);