Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / xml-stylesheet-removed.xhtml
blob956c9b50c4bdad1a33880dc613d2ab8b61f16283
1 <?xml-stylesheet href="resources/small.css" title="style" type="text/css"?>
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
3 <div id="result">FAIL</div>
4 <script type="text/javascript">
5 if (window.testRunner) {
6 testRunner.dumpAsText();
7 testRunner.waitUntilDone();
9 onload = function() {
10 document.documentElement.appendChild(document.styleSheets[0].ownerNode);
11 // Note: xml stylesheet is only valid when its parent is the document
12 if (document.styleSheets.length == 0)
13 document.getElementById('result').innerText = 'PASS';
14 if (window.testRunner)
15 testRunner.notifyDone();
17 </script>
18 </html>