diff --git a/src/admin_scripts/test/stylesheets.py b/src/admin_scripts/test/stylesheets.py index 0a1eb69..fd4509b 100644 --- a/src/admin_scripts/test/stylesheets.py +++ b/src/admin_scripts/test/stylesheets.py @@ -90,6 +90,11 @@ def test_sub_rules(self): max-width: 1170px;;; border : 0; } + + master { + padding : 0; + -webkit-border-radius: 3px;;; + } } """ expected = """@media (max-width: 539px) and (min-width: 375px) { @@ -97,6 +102,11 @@ def test_sub_rules(self): border: none; max-width: 1170px; } + + master { + -webkit-border-radius: 3px 3px 3px 3px; + padding: 0px 0px 0px 0px; + } } """ buffer = legacy.BytesIO(input) @@ -105,7 +115,9 @@ def test_sub_rules(self): windows_newline = False, property_order = ( "border", - "max-width" + "-webkit-border-radius", + "max-width", + "padding" ) ) result.seek(0)