/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/html/background.html
20 строк
775 B
Simon Martin
Issue #12421: tidy should also check .html files
09 авг 2016, 23:04
09 авг 2016, 23:04
1e60c91
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> <title></title> </head> <style> .test { background: url(rust-0.png) gray; } </style> <body> <div class="test" style="width:200px; height:200px; color:red;"> background: url(rust-0.png) gray; width:200px; height:200px; </div> <div class="test" style="background-image: url(rust-45.png); width:200px; height:200px; color:red;"> background-image: url(rust-45.png); width:200px; height:200px; </div> <div style="background: url(rust-90.png) yellow; width:200px; height:200px; border: 5px solid #000; color:blue;"> background: url(rust-90.png) yellow; width:200px; height:200px; border: 5px solid #000; </div> </body> </html>