[csswg-drafts] [mediaqueries-5] Handling of redefinitions of custom media queries

cvrebert has just created a new issue for https://github.com/w3c/csswg-drafts:

== [mediaqueries-5] Handling of redefinitions of custom media queries ==
Spec: https://drafts.csswg.org/mediaqueries-5/#custom-mq

The spec doesn't seem to address how multiple definitions of a given custom media query should be handled.

 Example:
```css
@custom-media --my-mq (min-width: 1em);
@custom-media --my-mq (min-width: 1000em);

@media (--my-mq) {
  /* do styles in here apply at 1em, or at 1000em ? */
}
```

Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1502 using your GitHub account

Received on Monday, 5 June 2017 23:34:16 UTC