permissive-parse.css 692 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. @-moz-document regexp("(\d{0,15})") {
  2. a {
  3. color: red;
  4. }
  5. }
  6. .custom-property {
  7. --this: () => {
  8. basically anything until final semi-colon;
  9. even other stuff; // i\'m serious;
  10. };
  11. --that: () => {
  12. basically anything until final semi-colon;
  13. even other stuff; // i\'m serious;
  14. };
  15. --custom-color: #ff3333 #ff3333;
  16. custom-color: #ff3333 #ff3333;
  17. }
  18. .var {
  19. --fortran: read (*, *, iostat=1) radius, height;
  20. }
  21. @-moz-whatever (foo: "(" bam ")") {
  22. bar: foo;
  23. }
  24. #selector,
  25. .bar,
  26. foo[attr="blah"] {
  27. bar: value;
  28. }
  29. @media (min-width: 640px) {
  30. .holy-crap {
  31. this: works;
  32. }
  33. }
  34. .test-comment {
  35. --value: a /* { ; } */;
  36. --comment-within: ( /* okay?; comment; */ );
  37. }