/
githubmirror
/
brackets
Обзор
Документация
Войти
/
githubmirror
/
brackets
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/extensions/default/CodeFolding/unittest-files/test.html
48 строк
1 KB
Patrick Oladimeji
Addresses issue where style and script tags (and their contents) did not appear as collapsible in html mixed mode.
20 мар 2017, 21:35
20 мар 2017, 21:35
6ed4e91
Код
Авторство
О чём код?
<html> <head> <style> .test { /* this should be collapsible */ } </style> <script> function () { /* this should be collapsible */ } </script> </head> <body> <form action="#" method="post"> <div> <label for="name">Text Input:</label> <input type="text" name="name" id="name" value="" tabindex="1" /> </div> <table> <thead> <tr> <th> {{handlebars}} </th> </tr> </thead> <tbody> <tr> <td></td> </tr> </tbody> </table> <div> <h4>Radio Button Choice</h4> <label for="radio-choice-1"> Choice 1 </label> <input type="radio" name="radio-choice-1" id="radio-choice-1" tabindex="2" value="choice-1" /> <label for="radio-choice-2">Choice 2</label> <input type="radio" name="radio-choice-2" id="radio-choice-2" tabindex="3" value="choice-2" /> </div> </form> </body> </html>