/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/html/test_textarea_input.html
15 строк
266 B
Simon Martin
Issue #12421: tidy should also check .html files
09 авг 2016, 23:04
09 авг 2016, 23:04
1e60c91
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> </head> <body> <textarea id="textarea"> </textarea> </body> <script> var area = document.getElementById('textarea'); area.addEventListener('input', function() { alert('input detected'); }); </script> </html>