/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/html/skip-behavior/page.html
14 строк
276 B
Raj Aryan
fix(html): skip white space only URLs in source attributes (#21101)
05 июн 2026, 13:28
Не верифицирован
05 июн 2026, 13:28
33c5241
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head><title>skip behavior</title></head> <body> <!-- whitespace-only: skip, no error --> <img src=" " alt="ws-only"> <img srcset=" " alt="ws-only-srcset"> <!-- sanity: normal src still resolves --> <img src="image.png" alt="ok"> </body> </html>