| var result = document.getElementById("result"); |
| var target = document.getElementById("target"); |
| result.appendChild(document.createTextNode(target.innerHTML)); |
| Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=13091">http://bugs.webkit.org/show_bug.cgi?id=13091</a> |
| REGRESSION (r20075): Wrong text style and pixel break in Apple Store Locator HUD</i>. |
| This tests that <tt>.innerHTML</tt> does not introduce additional inline style. |
| The following markup should not include a <tt>style</tt> attribute: |
| <div id="target"><span></span></div> |