tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / js / script-tests / slash-lineterminator-parse.js
1 description(
2 "This test checks for correct handling ofr backslash-newline in JS strings."
3 );
4
5 mystring = 'hello\
6 there';  
7 shouldBe('mystring', '"hellothere"');