Documentation for this module may be created at Module:Sandbox/Mdowdell/doc
-- error handling tests
local p = {}
function p.test()
local data = mw.loadData( 'Module:Does not exist' )
return data
end
function p.test2()
error( 'foo' )
end
function p.htmlErrorTest()
local a = mw.html.create('foo')
a.cssText(0)
return a
end
return p