Change default mode from Quirks to Standards in browser based tests, no bug, not part of the build

This commit is contained in:
bob%bclary.com 2005-11-20 06:01:39 +00:00
parent 7bf0c1bd09
commit 6c7a3b0acc
3 changed files with 5 additions and 1 deletions

View File

@ -38,7 +38,7 @@
DOCTYPE
<select name="doctype">
<option value="quirks">Quirks</option>
<option value="standards">Standards</option>
<option value="standards" selected>Standards</option>
</select>
Output Format
<select name="outputformat">

View File

@ -85,6 +85,8 @@ function userOnAfterPage()
// only report failures
win.document.forms.testCases.failures.checked = true;
// use standards mode
win.document.forms.testCases.doctype.value = "standards";
// these calls are all async
win.selectAll('e4x');
// so need to delay this call to make

View File

@ -85,6 +85,8 @@ function userOnAfterPage()
// only report failures
win.document.forms.testCases.failures.checked = true;
// use standards mode
win.document.forms.testCases.doctype.value = "standards";
// these calls are all async
win.selectAll('ecma');
win.selectAll('ecma_2');