-
Notifications
You must be signed in to change notification settings - Fork 11
/
demo.html
27 lines (24 loc) · 929 Bytes
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Stax JavaScript Demo</title>
<script type="text/javascript">
var expandIframe = function() {
var iframe = document.getElementById('test-iframe');
iframe.style.position = 'fixed';
iframe.style.left = '50%';
iframe.style.top = '50%';
iframe.style.marginLeft = '-150px';
iframe.style.marginTop = '-100px';
}
</script>
</head>
<body>
<div id="haxe:trace"></div>
<!--
<iframe id="test-iframe" src="http://www.yahoo.com" width="300" height="250"></iframe>
<input type="button" value="Fix" onclick="javascript:expandIframe();"/>
-->
<script type="text/javascript" src="demo.js"></script>
</body>
</html>