elenanincevic / sabconnect

Automatically exported from code.google.com/p/sabconnect
0 stars 0 forks source link

Background.html is no longer parsed by Chrome #13

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Using Chrome 7.0.517.41 or better
2. Select "Manage Extensions"
3. Inspect the Background.html for SABConnect

What is the expected output? What do you see instead?
The <script> tags in the header should be rendered 1 after the next, as such:
<script type="text/javascript" src="...."></script>
<script type="text/javascript" src="...."></script>
<script>_</script>

Instead, the script tags are not terminated as per the XHTML standard, so the 
script tags are embedded within eachother like so:

<script type="text/javascript" src=".....">
  <script type="text/javascript" src="....">
    <script>_</script>

This prevents the innermost script from running ( which prevents refreshes from 
happening in the background )

What version of the product are you using? On what operating system?
Version 1.0.2 of SABConnect
Version 7.0.517.41 of Chrome
Windows XP 

Please provide any additional information below.

Original issue reported on code.google.com by adam.n...@gmail.com on 24 Oct 2010 at 5:15