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

Side by Side Diff: module.html

Issue 2555653002: [WIP Prototype] ES6 https://html.spec.whatwg.org/#fetch-a-single-module-script implementation (Closed)
Patch Set: rebased Created 3 years, 8 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
« no previous file with comments | « depdep.js ('k') | module.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!doctype HTML>
2 <head>
3 <body onload='console.log("onload")'>
4 <script>
5 internals.runtimeFlags.moduleScriptsEnabled = true;
6
7 function errorHandler0(ev)
8 {
9 console.log("Message = " + ev.message);
10 }
11 window.addEventListener("error", errorHandler0);
12
13 </script>
14 <script type="module" src="module.js" onerror="console.log(1)" onload="console.l og(2)"></script>
15 <script>
16 testRunner.waitUntilDone();
17 setTimeout(() => {testRunner.notifyDone();}, 100);
18 </script>
OLDNEW
« no previous file with comments | « depdep.js ('k') | module.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698