"use strict"; var jsdom = require("../..").jsdom; exports["should not give CSS parsing errors upon encountering @-moz-document (GH-687)"] = function (t) { var css = ".x @-moz-document url-prefix() { .y { color: blue; } }"; var html = "

Hi

"; jsdom.env({ html: html, done: function (errors, window) { t.strictEqual(errors, null); t.done(); } }); };