Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / inspector-protocol / css / resources / active-media-queries.css
1 /* media queries which are guaranteed to evaluate to true */
2 @media all
3
4 and (           min-width:
5     1px),
6
7     (max-width: 1000em
8
9
10 ) { }
11
12 /* media queries which are guaranteed to evaluate to false */
13 @media all and (max-width: 0px), (min-width: 1000em) { }
14 @media (min-width: 20px) and (max-width: 10px) { }