0
I Use This!
Inactive

Commits : Listings

Analyzed 22 days ago. based on code collected 23 days ago.
Jan 30, 2024 — Jan 30, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Applet missing body should be error, not notice. More... over 12 years ago
More 508 commits. Includes some changes to 1.1.1 and 4.1.2 in the WCAG tests to provide more generic results, which can be converted into messages in the appropriate standard. More... over 12 years ago
1. First batch of Section 508 sniffs, to get the ball rolling. Will be named by their paragraph "1194.22" rule letter. (1194.22 is the portion of Section 508 which relates to electronic content.) 2. WCAG2 SC 1.1.1, 1.3.1: first tests to be genericised (null alt text), with the intention to use these in Section 508, but with different msg codes. Table header testing moved to HTMLCS util, but might get moved back to 1.3.1. 3. Standards now define what "extra information" is displayed in the auditor. By "extra information": in WCAG 2.0 this is principle and technique(s); in S508 this would be the violated portion of paragraph 1194.22. .. A new getMsgInfo() function is in the standard, which takes the code of a message and emits an array of information (two-element arrays) with title and content to display. 4. Auditor now genericised so it can look for things that look like a standard, instead of simply assuming that WCAG 2.0 is the only possible standard set. The "extra info" changes are related to this, too. 5. Fixed some reset style issues with the colour of the "unable to point" and "no code snippet available" messages. More... over 12 years ago
Merge pull request #56 from lwright-sq/master More... over 12 years ago
Rework of previous fix for code snippet font - by moving the font reset to the new "text container only" reset rule. More... over 12 years ago
1. Added some background and text colours to the reset styles, only for certain tags likely to have content in the auditor. 2. Monospace font is being overriden by the reset style for the "strong" part of code snippet. Re-add monospace font on that strong tag. More... over 12 years ago
Merge pull request #55 from lwright-sq/master More... over 12 years ago
Swap a nbsp for a unicode #160, to make sure it works on pages parsed as XHTML. Same thing, but XHTML (based on XML) does not have the automatic definition for nbsp like HTML, so was throwing syntax errors in XML parsing. This occured when there was more than one type of error shown in the issue list (eg. "5 errors, 30 warnings"). Fixes GitHub issue #53. More... over 12 years ago
Fix false positive in H30 test. If an image with no alt text was accompanied by text NOT in a tag within an anchor, it would not recognise it. Now also checks whether there is no text (or just a blank) in the A element using textContent before failing it. Resolves GitHub issue #52. More... over 12 years ago
Merge pull request #48 from lwright-sq/master More... over 12 years ago
1. Slightly re-worked the "unable to point to element" messages. 2. Removed version check script call for now. More... over 12 years ago
Merge pull request #47 from lwright-sq/master More... over 12 years ago
Fixed IE8 issue with the auditor not becoming translucent when the pointer is underneath the auditor popup. More... over 12 years ago
When hiding the pointer for calculating pointer direction (or whether to show/hide), I had used opacity style without using IE8's alpha filter, which means it wasn't hiding in IE8. Replaced this with a class which uses both. More... over 12 years ago
Merge pull request #46 from lwright-sq/master More... over 12 years ago
IE8 fix in cases where the Auditor is placed in a container that includes invalid HTML (eg. nested forms). Apparently using innerHTML in IE8 (once element is placed in document) is fraught with danger for "Unknown runtime error" issues in cases of invalid HTML. Using DOM manipulation to change the label instead. More... over 12 years ago
Merge pull request #45 from lwright-sq/master More... over 12 years ago
Revert pull #41. There are good reasons for this to be an error. More... over 12 years ago
Merge pull request #43 from lwright-sq/master More... over 12 years ago
Fix README link to issue tracker. More... over 12 years ago
Merge pull request #42 from lwright-sq/master More... over 12 years ago
Change message slightly for "may be hidden using styles". It could also be an element without a visual representation, such as an imagemap area element. More... over 12 years ago
Changed these tests to fire on the elements concerned, rather than on the _top element. More... over 12 years ago
Merge pull request #41 from lwright-sq/master More... over 12 years ago
SC 3.2.2: Change the error for On Input to a warning, along with the message. On Input submissions are allowed if the user is told beforehand. Otherwise, submit button must be added. More... over 12 years ago
Merge pull request #40 from lwright-sq/master More... over 12 years ago
Add an "isInDocument" check to determine whether an element is sitting inside or outside of a document. More... over 12 years ago
Merge pull request #39 from lwright-sq/master More... over 12 years ago
Fixed overzealous "not in body" message when it should be firing "not in document" instead. More... over 12 years ago
Add a message stating why we can't point to an element. Can be one of these things: - the message got fired on the document. - the message got fired on something outside of the document body (eg. document element's lang attribute). - the element is no longer in the DOM. - the element has been hidden using styles. More... over 12 years ago