repo.or.cz
/
gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Backed out changeset b71c8c052463 (bug 1943846) for causing mass failures. CLOSED...
[gecko.git]
/
editor
/
libeditor
/
crashtests
/
766360.html
blob
76c30456d69af33a487f84ff43176826fa42ee55
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<script>
5
6
function
boom
()
7
{
8
var
r
=
document
.
createRange
();
9
r
.
setEnd
(
document
.
createTextNode
(
"x"
),
0
);
10
window
.
getSelection
().
addRange
(
r
);
11
document
.
execCommand
(
"inserthtml"
,
false
,
"y"
);
12
}
13
14
</script>
15
</head>
16
17
<body
contenteditable
=
"true"
onload
=
"boom();"
></body>
18
</html>