1from PyObjCTools.TestSupport import *
2
3from WebKit import *
4
5class TestDOMCSSStyleDeclaration (TestCase):
6    def testMethods(self):
7        self.assertResultIsBOOL(DOMCSSStyleDeclaration.isPropertyImplicit_)
8
9
10if __name__ == "__main__":
11    main()
12