Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / fonts / valid-standard-font.html
1 <html>
2 <body style="font-family:-webkit-body">
3 <!-- WebKit assumes that -webkit-body is a valid font. The font-family:inherit will crash on load if it isn't -->
4 <input style="font-family:inherit"/>
5 <script>
6     if (window.testRunner) {
7         testRunner.dumpAsText();
8         testRunner.waitUntilDone();
9     }
10     window.setTimeout(runTest, 0);
11     function runTest() {
12         document.getElementById("result").innerText = "PASS";
13         if (window.testRunner) {
14             testRunner.notifyDone();
15         }
16     }
17 </script>
18 <div id="result">FAIL</div>
19 </body>
20 </html>