/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/html/summit-fail.html
36 строк
736 B
Jack Moffitt
Cargoify servo
09 сен 2014, 06:21
09 сен 2014, 06:21
c6ab60d
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> <style> html { background-color: #ccc; font-size: 50px; } div.frame { text-align: center; float: left; width: 310px; height: 400px; } iframe { width: 300px; height: 300px; border: solid 1px black; display: block; background-color: white; } </style> </head> <body> <div class="frame"> <iframe id="frameone" sandbox="allow-scripts" src="summit-two.html"> </iframe> frame one </div> <div class="frame"> <iframe id="frametwo" sandbox="allow-scripts" src="summit-crash.html"> </iframe> frame two </div> </body> </html>