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"/>
6 if (window.testRunner) {
7 testRunner.dumpAsText();
8 testRunner.waitUntilDone();
10 window.setTimeout(runTest, 0);
12 document.getElementById("result").innerText = "PASS";
13 if (window.testRunner) {
14 testRunner.notifyDone();
18 <div id="result">FAIL</div>