Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script type="application/dart" src="bin/dwc_browser.dart"></script> | 3 <script type="application/dart" src="bin/dwc_browser.dart"></script> |
| 4 <script type="text/javascript" src="dart.js"></script> | 4 <script type="text/javascript" src="dart.js"></script> |
| 5 <!-- | 5 <!-- |
| 6 TODO(jacobr): this is a hack to make Dart-JS interop work given chrome | 6 We must load 'dart_interop.js' explicitly. It cannot be injected dynamically |
|
Jennifer Messerly
2012/10/26 18:56:26
do we still need this comment? I thought dart_inte
Siggi Cherem (dart-lang)
2012/10/26 19:01:36
you are correct, I just wanted to keep some messag
| |
| 7 extension security restrictions for inline JS | 7 because of security restrictions for inline JS on chrome extensions. |
| 8 --> | 8 --> |
| 9 <script src="dart_proxy.js"></script> | 9 <script src="bin/packages/js/dart_interop.js"></script> |
| 10 <script src="background.js"></script> | 10 <script src="background.js"></script> |
| 11 </head> | 11 </head> |
| 12 <body> | 12 <body> |
| 13 </body> | 13 </body> |
| 14 </html> | 14 </html> |
| OLD | NEW |