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

Side by Side Diff: module.html

Issue 2838933003: [not-for-commit] kitsune changes + pending kouhei changes (Closed)
Patch Set: Created 3 years, 7 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 <!doctype HTML>
2 <head>
3 <script>
4 internals.runtimeFlags.moduleScriptsEnabled = true;
5
6 function errorHandler0(ev)
7 {
8 console.log("Message = " + ev.message);
9 }
10 window.addEventListener("error", errorHandler0);
11
12 </script>
13 <script type="module" src="module.js" onerror="console.log(1)" onload="console.l og(2)"></script>
14 <script>
15 testRunner.waitUntilDone();
16 setTimeout(() => {testRunner.notifyDone();}, 100);
17 </script>
OLDNEW
« no previous file with comments | « depdep.js ('k') | module.js » ('j') | third_party/WebKit/Source/core/dom/ModuleMap.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698