Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <body> | |
| 2 | |
| 3 | |
| 4 <script> | |
| 5 window.x = 1; | |
| 6 | |
| 7 var foo = 1; | |
| 8 foo = 2; | |
| 9 </script> | |
| 10 | |
| 11 | |
| 12 <script> | |
| 13 var bar = 1; | |
| 14 bar = 2; | |
| 15 // If we put next two tags on the same line, script ranges overlap and frontend gets wrong uiLocationToRawLocation. | |
| 16 </script> | |
| 17 <script>var baz = 3;baz = 2;</script> | |
| 18 | |
| 19 | |
| 20 | |
| 21 </body> | |
| OLD | NEW |