[Skip navigation links]

Site Report

This tab shows pages that exhibit browser-specific behavior, or trigger browser bugs.

BrowserIEEdgeFirefoxSafariOperaChromeiOSAndroid
Version111869136077≤ 111213≤ 34*Key
Critical IssuesCritical, 3 issuesCritical, 1 issuesCritical, 1 issuesCritical, 1 issuesCritical, 1 issuesCritical, 1 issuesCritical, 1 issuesCritical, 1 issuesCritical, 1 issuesCritical, 1 issuesCritical, 1 issuesCritical Missing content or functionality
Major IssuesVery Important, 1 issuesVery Important, 1 issuesVery Important Major layout or performance problems
Minor IssuesImportant, 2 issuesImportant, 1 issuesImportant, 1 issuesImportant, 1 issuesImportant, 1 issuesImportant, 1 issuesLess Important Minor layout or performance problems

* Most Android devices from 4.4 onwards use Chrome as the default browser, older versions use the original Android stock browser

PriorityDescription and URLGuideline and Line#Count

Priority 1

3 issues on 3 pages

CriticalCSS expressions are only supported by Internet Explorer. Edge Internet Explorer ≥ 8 Firefox Safari iPhone/iPad Chrome Opera Android
CSS property values like height: expression( 3*4 ); are only supported by IE6 and IE7. They are not supported in other browsers or IE8 standards mode.
https://mildenhall.moadoph.gov.au/stylesheets/style.css?1580216324Line 3626 3627
CriticalThe arguments.caller property is not supported in standards mode in IE9 or later. Internet Explorer ≥ 9
Avoid using the arguments.caller property.
https://mildenhall.moadoph.gov.au/javascripts/plugins.js?1580216324Line 8
CriticalThe element.attachEvent method was removed in Internet Explorer 11. Internet Explorer ≥ 11
Use the W3 standard addEventListener() instead, using feature detection to support old versions of IE:

if (obj.addEventListener) {
    // use W3 DOM method if available (Chrome, Firefox, IE9+, Opera 7+)
    obj.addEventListener('click', myClick, false);
} else if (obj.attachEvent)  {
    // fallback for IE8 and earlier
    obj.attachEvent('onclick', myClick);
}  else {
    // fallback to DOM level 0 (only allows single event handler per event for each element)
    obj.onclick = myClick;
}
https://mildenhall.moadoph.gov.au/javascripts/modernizr.min.js?1580216324Line 50

Priority 2

1 issues on 1 pages

Very ImportantThe CSS filter: property is not supported by some browsers. Internet Explorer Safari
https://mildenhall.moadoph.gov.au/stylesheets/style.css?1580216324Line 3287 3603 3607 3611 3616 ...

Priority 3

2 issues on 2 pages

ImportantDirectX filters are not supported by IE10 or later. Internet Explorer ≥ 10
DirectX-based Filters and Transitions (DX filters) do not work in Internet Explorer 10 for any pages in the Internet Zone. Use CSS3 features instead.
https://mildenhall.moadoph.gov.au/stylesheets/style.css?1580216324Line 362 378 470 482 1102 ...
ImportantThe position:sticky CSS property is only supported by Firefox 32 and Safari 6.1. Chrome Edge Internet Explorer Opera Android
https://mildenhall.moadoph.gov.au/Line 45
Expand all 6 issues