supports-moz-bool-pref.html 533 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <!-- Any copyright is dedicated to the Public Domain.
  3. - http://creativecommons.org/publicdomain/zero/1.0/ -->
  4. <html>
  5. <style>
  6. /* This is not a user agent style sheet, so the style will be ignored.
  7. "testing.supports.moz-bool-pref" is set to true in
  8. layout/tools/reftest/reftest-preferences.js. */
  9. @supports -moz-bool-pref("testing.supports.moz-bool-pref") {
  10. p {
  11. background-color: red;
  12. }
  13. }
  14. </style>
  15. <body>
  16. <p>This text should not have background color.</p>
  17. </body>
  18. </html>