allows you to see the overall result without seeing the tab content.
id( "qunit-testresult" ).innerHTML = html;
}
+ if ( typeof document !== "undefined" && document.title ) {
+ // TODO what are the unicode codes for these? as-is fails if qunit.js isn't served with the right mimetype/charset
+ document.title = (config.stats.bad ? "✖" : "✔") + " " + document.title;
+ }
+
QUnit.done( {
failed: config.stats.bad,
passed: passed,
<!DOCTYPE html>
<html>
<head>
+ <meta charset="UTF-8" />
<title>QUnit Test Suite</title>
<link rel="stylesheet" href="../qunit/qunit.css" type="text/css" media="screen">
<script type="text/javascript" src="../qunit/qunit.js"></script>