[css-cascade][mediaqueries] Allow custom mq before @import?

Currently, the CSS Cascading and Inheritance Level 4 spec says the only rule allowed before @import is @charset. I wonder if custom mq could be allowed too?

```css
@custom-media --narrow-window (max-width: 30em);
@import “style.css” (--narrow-window);
```

Received on Thursday, 2 April 2015 05:21:48 UTC