tidy-html5/regression_testing/cases/legacy-expects/case-443678.html
Jim Derry 5a1b65d089 Move the testing repository back into the Tidy codebase.
Automate testing of any PR's.
Updated README's explaining new processes.
2021-05-21 10:43:35 -04:00

28 lines
440 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>[ #443678 ] Unclosed &lt;script&gt; in &lt;head&gt; messes
Tidy</title>
<script src="bar.js">
function baz()
{
document.write( '<foo></foo>' );
document.write( "<bar>\"Some Text\"<\/bar>" );
}
</script>
<script src="foo.js"></script>
<style type="text/css">
body {
color: #FF0000;
}
</style>
</head>
<body>
Just a test.
<script>
test();
</script>
</body>
</html>