Exemple #1
0
 def test_parse_style_unordered(self, input, *csses):
     parsed_css = parse_style_decl(input).cssText
     for css in csses:
         self.assertIn(css, parsed_css)
Exemple #2
0
 def test_parse_style_unordered(self, input, *csses):
     parsed_css = parse_style_decl(input).cssText
     for css in csses:
         self.assertIn(css, parsed_css)
Exemple #3
0
 def test_parse_style_order(self, input, css):
     self.assertEqual(parse_style_decl(input).cssText, css)
Exemple #4
0
 def test_parse_style_order(self, input, css):
     self.assertEqual(parse_style_decl(input).cssText, css)