It's not clear to me from the spec text that media queries serialize with the specified or the "computed" value when integers or numbers are involved. In particular, should these two serialize identically? ```html <!doctype html> <style> @media (min-aspect-ratio: 1 / 1) { } @media (min-aspect-ratio: calc(1) / calc(1)) { } </style> <script> alert(document.styleSheets[0].cssRules[0].cssText) alert(document.styleSheets[0].cssRules[1].cssText) </script> ```