UNPKG

dojo

Version:

Dojo core is a powerful, lightweight library that makes common tasks quicker and easier. Animate elements, manipulate the DOM, and query with easy CSS syntax, all without sacrificing performance.

27 lines (24 loc) 744 B
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>declare steps on provide</title> <script> var dojoConfig = { packages: [ { name: 'dojo', location: 'node_modules/dojo' }, { name: 'testing', location: '.' } ], map: { '*': { 'dojo/tests': 'testing/tests/functional' } } }; </script> <script type="text/javascript" src="../../../../dojo.js"></script> </head> <body> <h1>declare steps on provide</h1> <p>This tests a legacy module that has two dojo.provides and both are stepped on by dojo.declare.</p> </body> </html>