mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-26 23:23:33 +00:00
e454783943
Differential Revision: https://phabricator.services.mozilla.com/D30480 --HG-- extra : moz-landing-system : lando
17 lines
379 B
HTML
17 lines
379 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'unsafe-inline'">
|
|
<template id="a">
|
|
<script src="file_script_template.js"></script>
|
|
</template>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
var temp = document.getElementsByTagName("template")[0];
|
|
var clon = temp.content.cloneNode(true);
|
|
document.body.appendChild(clon);
|
|
</script>
|
|
</body>
|
|
</html>
|