diff options
Diffstat (limited to 'test/manual/indent/html-multi.html')
-rw-r--r-- | test/manual/indent/html-multi.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/manual/indent/html-multi.html b/test/manual/indent/html-multi.html new file mode 100644 index 00000000000..a563c5eb244 --- /dev/null +++ b/test/manual/indent/html-multi.html @@ -0,0 +1,30 @@ +<!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> +</html> |