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