blob: ee904f024debed0e957e3256c3b88cb79d47676e [file] [log] [blame]
<html>
<head>
<style>
.editing {
border: 2px solid red;
padding: 12px;
font-size: 24px;
}
</style>
<script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
<script>
function editingTest() {
extendSelectionForwardByLineCommand();
copyCommand();
moveSelectionForwardByLineCommand();
pasteCommand();
}
</script>
<title>Editing Test</title>
</head>
<body>
<div class="explanation">
<div class="scenario">
Tests:
<br>
Fix for this bug:
<a href="rdar://problem/4423922">&lt;rdar://problem/4045511&gt;</a> TOT REGRESSION (r12358): second iframe in pair fails to copy
</div>
<div class="expected-results">
Expected Results:
<br>
Should see four blank iframes
<br>
</div>
</div>
<div contenteditable id="root" class="editing">
<div id="test">
<iframe style="border:solid blue 2px"></iframe>
<iframe style="border:solid green 2px";"></iframe>
</DIV>
</div>
<script>
runEditingTest();
</script>
</body>
</html>