| <p id="description">This tests removing format on text that has background color. There should be no span or inline style below:</p> |
| <div id="editor" contenteditable>hello <span style="color: black; background-color: #ff0000;">world</span> WebKit.</div> |
| <script type="text/javascript" src="../../resources/dump-as-markup.js"></script> |
| <script type="text/javascript"> |
| var editor = document.getElementById('editor'); |
| document.execCommand('SelectAll', false, null); |
| document.execCommand('RemoveFormat', false, null); |
| Markup.description(document.getElementById('description').textContent); |