forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1345015 - Part 3. Add crash test. r=masayuki
Add minimal crash test for this. When removing a line, this doesn't occur. MozReview-Commit-ID: JqS2E8q47ML --HG-- extra : rebase_source : 322a77cbc49e29bbd6b705650485634dd4801b8b
- Loading branch information
1 parent
80cc72a
commit 86506e2
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<script type="application/javascript"> | ||
document.designMode = "on"; | ||
let selection = window.getSelection(); | ||
|
||
let foo = document.createElement('foo'); | ||
let div = document.createElement('div'); | ||
document.documentElement.appendChild(foo); | ||
document.documentElement.appendChild(div); | ||
foo.outerHTML = '<foo>'; | ||
|
||
let range = document.createRange(); | ||
range.selectNode(div); | ||
selection.addRange(range); | ||
range.setStart(foo, 0); | ||
|
||
range = document.createRange(); | ||
range.selectNode(document.documentElement); | ||
selection.addRange(range); | ||
|
||
document.execCommand('insertparagraph', false, null); | ||
</script> | ||
</head> | ||
<body> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters