Smalltalk createPackage: 'Platform-DOM-Tests'! TestCase subclass: #PlatformDomTest instanceVariableNames: 'fixtureDiv' package: 'Platform-DOM-Tests'! !PlatformDomTest methodsFor: 'testing'! testEntityConversion self assert: '©' htmlTextContent equals: '©' ! testTextContentDoesNotRunScript self shouldnt: [ '' htmlTextContent ] raise: Error ! !