Sign in
chromium
/
codesearch
/
chromium
/
src
/
HEAD
/
.
/
android_webview
/
test
/
shell
/
assets
/
page_with_module.html
blob: 3b5a126308a6cca486feb452ed4b760dc2ef3944 [
file
] [
log
] [
blame
]
<!DOCTYPE html>
<html>
<body>
<script
type
=
'module'
>
import
(
"./mod.m.js"
).
then
(({
callMe
})
=>
{
if
(
callMe
())
{
injectedObject
.
success
();
}
else
{
injectedObject
.
error
();
}
}).
catch
((
error
)
=>
injectedObject
.
error
());
</script>
</body>
</html>