forked from mirrors/gecko-dev
18 lines
385 B
HTML
18 lines
385 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
<script>
|
|
function addPlugin(aId, aType="application/x-test") {
|
|
var embed = document.createElement("embed");
|
|
embed.setAttribute("id", aId);
|
|
embed.style.width = "200px";
|
|
embed.style.height = "200px";
|
|
embed.setAttribute("type", aType);
|
|
return document.body.appendChild(embed);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|