/
githubmirror
/
brackets
Обзор
Документация
Войти
/
githubmirror
/
brackets
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/extensions/default/HtmlEntityCodeHints/unittest-files/default.html
49 строк
1 KB
Randy Edmunds
fix entity insertion with 2 entities on same line
20 дек 2013, 02:37
20 дек 2013, 02:37
fe91284
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> </head> <body> <!-- Should show hints --> <p> Test& </p> <!-- Should show hints --> <p> Test! & </p> <!-- Should show hints when cursor inside Entity --> <p> Test´ with more text and a subsequent entity such as † </p> <!-- Shouldn't show hints inside an opening tag--> <p&></p> <!-- Shouldn't show hints inside a closing tag--> <p></p&> <!-- Should show hints when semi-colon on the same line --> <p> Test ; & </p> <!-- Should not hint for & in attribute name --> <p & ></p> <!-- Should not hint for & in attribute value --> <p title="&"></p> <!-- Should not hint for & in url --> <a href="https://github.com/adobe/brackets/issues?labels=low+priority&page=1&state=open">link</a> <!-- Should show multiple hints in same line --> <p>This & that & the other</p> <!-- Should sort &#xxxx hints numerically not alphabetically --> <p> &# </p> </body> </html>