Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / html-document-set-title.html
blob6a0beef7ed0f652728379ec6cb4e0ac5919d815f
1 <html>
2 <head>
3 <script src="../../resources/js-test.js"></script>
4 <script>
5 function runTest()
7 shouldBe('document.title', '""');
9 </script>
10 </head>
11 <body onload="runTest()">
12 <svg>
13 <title>Should not be set on HTML Document</title>
14 </svg>
15 </body>
16 </html>