| <p>This tests cloning an input element with an edited value. |
| The cloned input element should retain the edited value and you should see PASSED blow.</p> |
| <div><input id="test" title="1" type="text" value="FAIL"></div> |
| <script type="text/javascript"> |
| var test = document.getElementById('test'); |
| var x = test.offsetLeft; // Force layout |
| var clone = test.cloneNode(true); |
| test.parentNode.appendChild(clone); |
| clone.selectionStart = clone.selectionEnd = clone.value.length; |
| document.execCommand('InsertText', false, 'ED'); |
| document.getElementById('log').textContent = clone.value; |