Skip to content
Snippets Groups Projects
Commit 3cb3948e authored by Marijn Haverbeke's avatar Marijn Haverbeke
Browse files

[test] Verify line-breaker against CR characters

parent 983ba3e3
No related branches found
No related tags found
No related merge requests found
......@@ -389,3 +389,9 @@ testCM("doubleScrollbar", function(cm) {
var wrap = cm.getWrapperElement();
is(wrap.offsetWidth - byClassName(wrap, "CodeMirror-lines")[0].offsetWidth <= scrollbarWidth);
});
testCM("weirdLinebreaks", function(cm) {
cm.setValue("foo\nbar\rbaz\r\nquux\n\rplop");
is(cm.getValue(), "foo\nbar\nbaz\nquux\n\nplop");
is(cm.lineCount(), 6);
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment