Auto merge of #17153 - Manishearth:stylo-vp-disable, r=emilio

stylo: disable @viewport

Firefox doesn't support @viewport, we shouldn't either.

r=emilio https://bugzilla.mozilla.org/show_bug.cgi?id=1347410

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/17153)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-06-04 08:56:26 -07:00 committed by GitHub
commit 7176e3ae9e

View file

@ -1759,7 +1759,7 @@ fn is_viewport_enabled() -> bool {
#[cfg(not(feature = "servo"))]
fn is_viewport_enabled() -> bool {
true
false // Gecko doesn't support @viewport
}
impl<'a, 'b> AtRuleParser for NestedRuleParser<'a, 'b> {