Files
sapper/test/unit/clean_html/samples/removes-script-contents/input.html
2018-08-19 15:20:14 -04:00

16 lines
241 B
HTML

<!doctype html>
<html lang="en">
<head>
</head>
<body>
<script>
console.log('this should be deleted');
</script>
<script>
console.log('so should this');
</script>
<script src="attributes-are-preserved.js"></script>
</body>
</html>