Merge pull request #310 from marcusklaas/continue-reg-test
Add regression test for bad continue span
This commit is contained in:
commit
3fdbb3b97c
2 changed files with 16 additions and 0 deletions
|
|
@ -121,3 +121,11 @@ fn issue227() {
|
|||
let handler = box DocumentProgressHandler::new(addr, DocumentProgressTask::DOMContentLoaded);
|
||||
}
|
||||
}
|
||||
|
||||
fn issue184(source: &str) {
|
||||
for c in source.chars() {
|
||||
if index < 'a' {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -158,3 +158,11 @@ fn issue227() {
|
|||
DocumentProgressTask::DOMContentLoaded);
|
||||
}
|
||||
}
|
||||
|
||||
fn issue184(source: &str) {
|
||||
for c in source.chars() {
|
||||
if index < 'a' {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue