tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / js / script-tests / string-slice-abnormal-values.js
1 description(
2 "This test checks for handling of abnormal values passed to String.slice"
3 );
4
5 shouldBe('"abc".slice(0)', '"abc"');
6 shouldBe('"abc".slice(0, Infinity)', '"abc"');