Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / innerHTML / 004.xhtml
blob905590dfa8a483d52fe475769f8dec6cc7f097d2
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC
3 "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
4 "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg-flat.dtd">
5 <html xmlns="http://www.w3.org/1999/xhtml">
6 <head>
7 <meta name="description" content="This tests singular elements too" />
8 <title>xhtml innerHTML test</title>
9 </head>
10 <body>
11 <span>Content:</span>
12 <pre id="content">placeholder</pre>
13 <div></div>
14 <span></span>
15 <b>test</b>
16 <br />
17 <div></div>
18 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300" height="200">
19 <?xml-stylesheet type="text/xsl" href=""?>
20 <circle cx="150" cy="100" r="50" xlink:title="test"/>
21 </svg>
22 <script>
23 window.addEventListener ("load", function() {
24 if (window.testRunner)
25 testRunner.dumpAsText();
26 document.getElementById("content").firstChild.nodeValue = document.documentElement.innerHTML;
27 }, false);
29 </script>
30 </body>
31 </html>