1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
android_webview / test / data / iframe.html [blame]
<html>
<head>
<style>
div {
background-color: rgb(10,10,10);
height: 100%;
width: 100%;
}
iframe {
float: right;
height: 0%;
width: 0%;
}
</style>
</head>
<body>
<div>
<iframe src="./malware.html"></iframe>
</div>
</body>
</html>