Update tests to work around QUnit 1.9.0 bug in Narwhal/older-Firefox and add platform.js to test/index.html.

Former-commit-id: eed8246c795735558ba9f499b86f08ed3970ccaf
This commit is contained in:
John-David Dalton
2012-07-16 13:21:11 -04:00
parent a2fa52504c
commit 7e79903fe8
4 changed files with 1892 additions and 5 deletions

View File

@@ -73,7 +73,7 @@
'<input name="norequire" type="checkbox">No RequireJS</label>';
var label2 = document.createElement('label');
label2.innerHTML =
label2.innerHTML = ' ' +
'<select name="build">' +
'<option value="dev">Developement</option>' +
'<option value="prod">Production</option>' +
@@ -82,7 +82,7 @@
'</select> Build';
var checkbox = label1.firstChild,
dropdown = label2.firstChild;
dropdown = label2.getElementsByTagName('select')[0];
init();
});