mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-07 17:09:07 +00:00
15 lines
440 B
HTML
15 lines
440 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<body>
|
|
<script type="text/javascript">
|
|
// create an embed, insert it in the doc and immediately remove it
|
|
var embed = document.createElement('embed');
|
|
embed.setAttribute("type", "application/x-test");
|
|
embed.setAttribute("style", "width: 0px; height: 0px;");
|
|
document.body.appendChild(embed);
|
|
window.getComputedStyle(embed, null).top;
|
|
document.body.remove(embed);
|
|
</script>
|