tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

variable-empty-name-reserved.html (585B)


      1 <!doctype html>
      2 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/2692">
      3 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1467309">
      4 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
      5 <link rel="author" title="Mozilla" href="https://mozilla.org">
      6 <title>-- is a reserved property name</title>
      7 <script src="/resources/testharness.js"></script>
      8 <script src="/resources/testharnessreport.js"></script>
      9 <script>
     10 test(function() {
     11  assert_false(CSS.supports("--", "initial"), "-- is a reserved property name");
     12 });
     13 </script>