-
Improvement
-
Resolution: Unresolved
-
Major
-
None
-
None
-
None
-
1 - Middle term
-
2 - Normal
If you have this
<zone name="z1"> <html> <head> <script src="j1.js"/> <script>Myinlinejs</script> </head> </html> </zone> <zone name="z2"> <html> <head> <script src="j2.js"/> <script>Myinlinejs2</script> </head> </html> </zone>
It is currently grouped as this
<html> <head> <script src="j1.js"/> <script>Myinlinejs</script> <script src="j2.js"/> <script>Myinlinejs2</script> </head> </html>
but it should be grouped as this, to make minimizer more efficient
<html> <head> <script src="j1.js"/> <script src="j2.js"/> <script>Myinlinejs</script> <script>Myinlinejs2</script> </head> </html>