Sign in
webkit
/
WebKit
/
d0e9359bbbbbe54170cea1569c9fb736cfa3bccd
/
.
/
LayoutTests
/
editing
/
undo
/
5378473.html
blob: 4833b50376de7dcf20957f4d0f49cf6709764be2 [
file
] [
log
] [
blame
]
<div
id
=
"div"
contenteditable
=
"true"
></div>
<script>
div
=
document
.
getElementById
(
"div"
);
div
.
focus
();
document
.
execCommand
(
"InsertText"
,
false
,
"foo"
);
document
.
execCommand
(
"Delete"
);
document
.
execCommand
(
"Undo"
);
</script>