witten
/
luminotes
Archived
1
0
Fork 0
This repository has been archived on 2023-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
luminotes/static/jsunit/app/css
Dan Helfman 61c6ab3fb0 Beginning stubs for client-side javascript "unit" tests. (Probably more like
functional tests, unless a whole lot of mock objects are introduced, which
isn't entirely out of the question). Uses JsUnit, which is included in this
commit.
2007-09-06 10:25:06 +00:00
..
jsUnitStyle.css Beginning stubs for client-side javascript "unit" tests. (Probably more like 2007-09-06 10:25:06 +00:00
readme Beginning stubs for client-side javascript "unit" tests. (Probably more like 2007-09-06 10:25:06 +00:00

readme

this file is required due to differences in behavior between Mozilla/Opera 
and Internet Explorer.

main-data.html calls kickOffTests() which calls top.testManager.start()
in the top most frame. top.testManager.start() initializes the output 
frames using document.write and HTML containing a relative <link> to the 
jsUnitStyle.css file. In MSIE, the base href used to find the CSS file is 
that of the top level frame however in Mozilla/Opera the base href is
that of main-data.html. This leads to not-found for the jsUnitStyle.css
in Mozilla/Opera. Creating app/css/jsUnitStyle.css works around this problem.