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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/html/semantics/scripting-1/the-script-element/module/imports.noinline-c.js

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
2 import { INC_A } from "./imports-inc-a.js";
3 import { INC_B } from "./imports-inc-b.js";
4 import { INC_AB_A, INC_AB_B } from "./imports-inc-ab.js";
5
6 test(function () {
7 assert_equals(INC_A.from, "imports-a.js", "Unexpected INC_A");
8 assert_equals(INC_B.from, "imports-b.js", "Unexpected INC_A");
9 assert_equals(INC_AB_A.from, "imports-a.js", "Unexpected INC_A");
10 assert_equals(INC_AB_B.from, "imports-b.js", "Unexpected INC_A");
11 assert_equals(INC_A, INC_AB_A, "INC_A and INC_AB_A should be the sam e");
12 assert_equals(INC_B, INC_AB_B, "INC_B and INC_AB_B should be the sam e");
13 }, "Import the same module multiple times");
14
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698