mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-02 06:22:20 +00:00
Change default mode from Quirks to Standards in browser based tests, no bug, not part of the build
This commit is contained in:
parent
7bf0c1bd09
commit
6c7a3b0acc
@ -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">
|
||||
|
@ -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
|
||||
|
@ -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');
|
||||
|
Loading…
x
Reference in New Issue
Block a user