blob: fac5eb1401c184c5df8cd9a25a3251649788e84e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<!--
<script>
// No indent in a comment
if (true) {
do not change;
}
</script>
-->
<style type="text/css">
h1 {
font-family: 'Spinnaker', sans-serif;
}
</style>
<script>
var a = 4 < 5;
function() {
if (x > 75)
return 25;
return "hello";
}
</script>
</head>
<body>
</body>
<!--
Local Variables:
mhtml-tag-relative-indent: nil
End:
-->
</html>
|