Skip to content

Commit

Permalink
Bug 1693766 [wpt PR 27699] - No dynamic import in service worker, a=t…
Browse files Browse the repository at this point in the history
…estonly

Automatic update from web-platform-tests
No dynamic import in service worker (#27699)

Part of whatwg/html#6395 and w3c/ServiceWorker#1356
--

wpt-commits: a02460e35145989c6fe2365f03d1b0006f381d9d
wpt-pr: 27699

UltraBlame original commit: 4f89a146b69c4b14730d2418cbac4447c6ac461a
  • Loading branch information
marco-c committed Mar 15, 2021
1 parent 8572dca commit b149156
Show file tree
Hide file tree
Showing 11 changed files with 1,430 additions and 504 deletions.
169 changes: 169 additions & 0 deletions testing/web-platform/tests/docs/writing-tests/testharness.md
Original file line number Diff line number Diff line change
Expand Up @@ -1184,6 +1184,30 @@ META
:
global
=
dedicatedworker
-
module
/
/
=
=
>
would
run
in
the
dedicated
worker
scope
as
a
module
/
/
META
:
global
=
worker
/
/
Expand Down Expand Up @@ -1290,6 +1314,37 @@ html
code
>
*
dedicatedworker
-
module
to
be
run
at
<
code
>
<
var
>
x
<
/
var
>
.
any
.
worker
-
module
.
html
<
/
code
>
*
serviceworker
:
to
Expand Down Expand Up @@ -1324,7 +1379,75 @@ is
implied
)
*
serviceworker
-
module
:
to
be
run
at
<
code
>
<
var
>
x
<
/
var
>
.
any
.
serviceworker
-
module
.
html
<
/
code
>
(
.
https
is
implied
)
*
sharedworker
:
to
be
run
at
<
code
>
<
var
>
x
<
/
var
>
.
any
.
sharedworker
.
html
<
/
code
>
*
sharedworker
-
module
:
to
be
Expand All @@ -1345,6 +1468,8 @@ var
any
.
sharedworker
-
module
.
html
<
Expand Down Expand Up @@ -1605,6 +1730,50 @@ in
a
test
.
In
window
environments
the
script
will
be
included
using
a
classic
<
script
>
tag
.
In
classic
worker
environments
the
script
will
be
imported
using
importScripts
(
)
.
In
module
worker
environments
the
script
will
be
imported
using
a
static
import
.
#
#
#
Expand Down
Loading

0 comments on commit b149156

Please sign in to comment.