Index: test/webkit/slash-lineterminator-parse.js |
diff --git a/test/webkit/resources/standalone-post.js b/test/webkit/slash-lineterminator-parse.js |
similarity index 90% |
copy from test/webkit/resources/standalone-post.js |
copy to test/webkit/slash-lineterminator-parse.js |
index d157e78bfa084329e2ec1a9b7d6ad456e904c152..b7a05bf2b5081f82e372d6ca1215d3e73e89857a 100644 |
--- a/test/webkit/resources/standalone-post.js |
+++ b/test/webkit/slash-lineterminator-parse.js |
@@ -21,6 +21,10 @@ |
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
-wasPostTestScriptParsed = true; |
+description( |
+"This test checks for correct handling ofr backslash-newline in JS strings." |
+); |
-finishJSTest(); |
+mystring = 'hello\ |
+there'; |
+shouldBe('mystring', '"hellothere"'); |