Wordpress/tests/qunit/editor/coverage/index.html
Andrew Ozz ce2dcccf86 Incorporate the TinyMCE tests into our JS tests:
- Modified the original tests so TinyMCE can be loaded from /src/wp-includes/js/tinymce.
- Added "WP" option to the UI to select only tests relevant to our integration (excludes most of the default plugins tests).
- Added tests for obsolete HTML elements and attributes (html4 back-compat).
See #27014.

git-svn-id: https://develop.svn.wordpress.org/trunk@27155 602fd350-edb4-49c9-b593-d223f7449a82
2014-02-10 01:11:25 +00:00

30 lines
782 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Code Coverage</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<!-- coverage -->
<link rel="stylesheet" href="js/reporter.css" type="text/css" />
<script src="js/underscore-min.js"></script>
<script src="js/backbone-min.js"></script>
<script src="js/reporter.js"></script>
<script src="js/JSCovReporter.js"></script>
</head>
<body>
<div id="coverage"></div>
<div id="menu"></div>
<script>
if (top != window && top.TestRunner) {
new JSCovReporter({ coverObject: top.TestRunner.getCoverObject() });
//onsole.info(top.TestRunner.getCoverObject());
}
</script>
</body>
</html>