mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
19 lines
463 B
HTML
19 lines
463 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
iframe {
|
|
margin: 10px;
|
|
float: left;
|
|
width: 300px;
|
|
height: 300px;
|
|
border: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
iframe test
|
|
<iframe sandbox="allow-scripts" src="multiple_external_child.html"> </iframe>
|
|
<iframe sandbox="allow-scripts" src="multiple_external_child.html"> </iframe>
|
|
</body>
|
|
</html>
|