Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1354)

Side by Side Diff: sky/tests/modules/multiple-scripts.sky

Issue 938623005: Allow multiple dart <script> tags in .sky files (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Update test results Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <sky>
2 <div id='test'>FAIL</div>
3 <script>
4 import "dart:sky" as sky;
5
6 void main () {
7 sky.document.getElementById('test').textContent = 'PASS';
8 }
9 </script>
10 <script>
11 // Each script is a separate dart library.
12 import "dart:sky" as sky;
13 import "dart:sky.internals" as internals;
14
15 void main () {
16 internals.notifyTestComplete(sky.document.getElementById('test').textContent);
17 }
18 </script>
19 </sky>
OLDNEW
« no previous file with comments | « sky/tests/modules/dart-imports-loader-interaction-expected.txt ('k') | sky/tests/modules/multiple-scripts-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698