blob: f92ea0e8434d47cc03f5c50ec8be32b8858de199 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../http/tests/inspector/resources/inspector-test.js"></script>
<script src="resources/prettyprinting/utilities.js"></script>
<script>
function test()
{
let suite = InspectorTest.createAsyncSuite("CodeMirror.PrettyPrinting.JavaScript");
addPrettyPrintingTests(suite, "text/javascript", [
"resources/prettyprinting/javascript-tests/block-comment.js",
"resources/prettyprinting/javascript-tests/single-statement-blocks.js",
"resources/prettyprinting/javascript-tests/switch-case-default.js",
"resources/prettyprinting/javascript-tests/unary-binary-operators.js",
"resources/prettyprinting/javascript-tests/do-while-loop.js",
"resources/prettyprinting/javascript-tests/if-followed-by-while.js",
"resources/prettyprinting/javascript-tests/while-within-do-while.js",
"resources/prettyprinting/javascript-tests/if-while-within-do-while.js",
"resources/prettyprinting/javascript-tests/do-while-within-if.js",
]);
suite.runTestCasesAndFinish();
}
</script>
</head>
<body onload="runTest()">
<p>Test JavaScript pretty printing with CodeMirror.</p>
</body>
</html>