示例#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)
示例#2
0
文件: test_css.py 项目: miyakogi/wdom
 def test_parse_style_unordered(self, input, *csses):
     parsed_css = parse_style_decl(input).cssText
     for css in csses:
         self.assertIn(css, parsed_css)
示例#3
0
 def test_parse_style_order(self, input, css):
     self.assertEqual(parse_style_decl(input).cssText, css)
示例#4
0
文件: test_css.py 项目: miyakogi/wdom
 def test_parse_style_order(self, input, css):
     self.assertEqual(parse_style_decl(input).cssText, css)