/
githubmirror
/
brackets
Обзор
Документация
Войти
/
githubmirror
/
brackets
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/spec/CSSUtils-test-files/offsets.css
57 строк
1 KB
RaymondLim
Fix the unit test issue and replace `while (true)` loop with clearer logic in `do … while` loop.
23 сен 2014, 03:00
23 сен 2014, 03:00
d339001
Код
Авторство
О чём код?
a { color: red; }/*END*/ a { color: orange; }/*END*/ a { color: yellow; }/*END*/ a:visited { color: black; }/*END*/ a { color: red; }/*END*/a { color: blue; }/*END*/ /* Note: @charset and @import must be at top of style sheet, so * examples are technically malformed, but parsing is the same */ @charset "UTF-8"; /* comment after @rule should be included, even if it contains @import (Issue #861) */ a { color: lime; } /* comment before @rule should be excluded */ @import url("charset.css"); a { color: pink; } /* @media rule should be excluded */ @media screen AND (max-width:320px) { /* indented comment should be included */ a { color: purple; } /* comment on same line as previous rule should be excluded */ a { color: purple; } a { /* non-crlf whitespace before this rule should be excluded */ color: maroon; } } /* rules inside a comment */ /* p { color: "black" } */ div { color: "white"; /* nested comment */ /* border: none */ } /* another rule inside a comment to test https://github.com/adobe/brackets/issues/9002 */ /* p { color: "black"; } */