/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/html/entities/page.html
17 строк
671 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>Entities</title></head> <body> <img src="./image.png" alt="numeric reference in path"> <img src="./a&b.png" alt="amp in filename"> <img src="./image.png?x=1&y=2" alt="amp in query"> <img srcset="./image.png 1x, ./a&b.png 2x" alt="references in srcset"> <img srcset="./image.png 1x, ./a&b.png 2x" alt="entity-encoded whitespace splits candidates"> <img src="#foo" alt="decodes to fragment-only, must be skipped"> <img src="  " alt="decodes to whitespace-only, must be skipped"> <link rel="icon" href="./image.png"> <meta name="twitter:image" content="./image.png"> </body> </html>