Platform-DOM-Tests.st 406 B

123456789101112131415
  1. Smalltalk createPackage: 'Platform-DOM-Tests'!
  2. TestCase subclass: #PlatformDomTest
  3. instanceVariableNames: 'fixtureDiv'
  4. package: 'Platform-DOM-Tests'!
  5. !PlatformDomTest methodsFor: 'testing'!
  6. testEntityConversion
  7. self assert: '©' htmlTextContent equals: '©'
  8. !
  9. testTextContentDoesNotRunScript
  10. self shouldnt: [ '<script>throw new Error("Intentional")</script>' htmlTextContent ] raise: Error
  11. ! !