haikuwebkit/LayoutTests/fonts/valid-standard-font.html

21 lines
573 B
HTML
Raw Permalink Normal View History

<html>
<body style="font-family:-webkit-body">
<!-- WebKit assumes that -webkit-body is a valid font. The font-family:inherit will crash on load if it isn't -->
<input style="font-family:inherit"/>
<script>
Fonts, fullscreen, gamepad, and html5lib tests should use testRunner instead of layoutTestController https://bugs.webkit.org/show_bug.cgi?id=88959 Reviewed by Darin Adler. * fonts/valid-standard-font.html: * fullscreen/anonymous-block-merge-crash.html: * fullscreen/full-screen-element-stack.html: * fullscreen/full-screen-frameset.html: * fullscreen/full-screen-iframe-zIndex.html: * fullscreen/full-screen-keyboard-disabled.html: * fullscreen/full-screen-keyboard-enabled.html: * fullscreen/full-screen-remove-ancestor-during-transition.html: * fullscreen/full-screen-remove-sibling.html: * fullscreen/full-screen-render-inline.html: * fullscreen/full-screen-request-rejected.html: * fullscreen/full-screen-request-removed.html: * fullscreen/full-screen-restrictions.html: * fullscreen/full-screen-stacking-context.html: * fullscreen/full-screen-test.js: (runWithKeyDown): (endTest): * fullscreen/full-screen-zIndex-after.html: * fullscreen/full-screen-zIndex.html: * fullscreen/non-ancestor-iframe.html: * fullscreen/parent-flow-inline-with-block-child.html: * fullscreen/video-controls-override.html: * html5lib/resources/runner.js: (run): * html5lib/webkit-resumer.html: * platform/gtk/fonts/custom-font-missing-glyphs.html: * platform/gtk/fonts/font-face-with-complex-text.html: * platform/gtk/fonts/font-family-fallback.html: * platform/gtk/fonts/synthetic-oblique-positioning.html: Canonical link: https://commits.webkit.org/106812@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@120190 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2012-06-13 12:34:26 +00:00
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
window.setTimeout(runTest, 0);
function runTest() {
document.getElementById("result").innerText = "PASS";
Fonts, fullscreen, gamepad, and html5lib tests should use testRunner instead of layoutTestController https://bugs.webkit.org/show_bug.cgi?id=88959 Reviewed by Darin Adler. * fonts/valid-standard-font.html: * fullscreen/anonymous-block-merge-crash.html: * fullscreen/full-screen-element-stack.html: * fullscreen/full-screen-frameset.html: * fullscreen/full-screen-iframe-zIndex.html: * fullscreen/full-screen-keyboard-disabled.html: * fullscreen/full-screen-keyboard-enabled.html: * fullscreen/full-screen-remove-ancestor-during-transition.html: * fullscreen/full-screen-remove-sibling.html: * fullscreen/full-screen-render-inline.html: * fullscreen/full-screen-request-rejected.html: * fullscreen/full-screen-request-removed.html: * fullscreen/full-screen-restrictions.html: * fullscreen/full-screen-stacking-context.html: * fullscreen/full-screen-test.js: (runWithKeyDown): (endTest): * fullscreen/full-screen-zIndex-after.html: * fullscreen/full-screen-zIndex.html: * fullscreen/non-ancestor-iframe.html: * fullscreen/parent-flow-inline-with-block-child.html: * fullscreen/video-controls-override.html: * html5lib/resources/runner.js: (run): * html5lib/webkit-resumer.html: * platform/gtk/fonts/custom-font-missing-glyphs.html: * platform/gtk/fonts/font-face-with-complex-text.html: * platform/gtk/fonts/font-family-fallback.html: * platform/gtk/fonts/synthetic-oblique-positioning.html: Canonical link: https://commits.webkit.org/106812@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@120190 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2012-06-13 12:34:26 +00:00
if (window.testRunner) {
testRunner.notifyDone();
}
}
</script>
<div id="result">FAIL</div>
</body>
</html>