/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/html/style-attribute/page.html
16 строк
679 B
Alexander Akait
fix: expand HTML parser tag and attribute coverage (#21159)
11 июн 2026, 12:42
Не верифицирован
11 июн 2026, 12:42
f6e52d0
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> <title>Style Attribute Test</title> </head> <body> <div style="color: red; background: url(./pixel.png);">Single url</div> <p style="color: blue;">No url here — left untouched</p> <span style="background-image: image-set('./pixel.png' 1x);">image-set</span> <section style="background: url('./pixel.png'), url(./pixel.png);">Multiple urls</section> <div style="background: url(./pixel.png);">Entity in url</div> <div style="--quote: '"'; background: url(./pixel.png);">Entity round-trip</div> <div style="background: url(./pixel.png);">Entity-obfuscated url()</div> <div style="">Empty style — left untouched</div> </body> </html>