Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dynamic / outerHTML-doc.html
blob1f996bd647dba4ae142705d681b2f824decdd8c3
1 <html>
2 <body>
3 <p>test for <a href="rdar://problem/4110775">4110775</a> Crash will occur when double-clicking outerHTML link on W3 DOM test</p>
4 <p>
5 <div id="test">This test passed. We don't support outerHTML on the document object. Neither does WinIE.</div>
7 <script type="text/javascript">
8 var t = document;
9 var outerStr = "<div id='test2'>This test failed. We don't support outerHTML on the document object. Neither does WinIE. Why did this work?</div>";
10 t.outerHTML = outerStr;
11 </script>
13 </body>
14 </html>