blob: 9a2d4f237fb3e60d67ba50df8693b0a2c050169c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<script type="application/javascript">
window.onload = function()
{
document.getElementById("i")
.setAttribute("width", 100);
};
</script>
</head>
<body>
<iframe src="data:text/html,<div style='position:fixed'>foo</div>"
id="i" width="75" height="150"></iframe>
</body>
</html>
|