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
Left and right bouncing: fixed the vertical alignment of the fried egg. More... almost 13 years ago
1. Give point-to-element buttons their own specific ID - previously duplicated. 2. Use pointToIssueElement to enable/disable the "point to element" button as required, rather than it happening on "View Report" click. More... almost 13 years ago
Presentational markup (H49) now emits a warning, not an error. Change made on following reasons: - There is nothing specific that fails SC 1.3.1 for presentational markup. - There are certain tags (eg. b, i, u) that are redefined as something minimally semantic in the current HTML 5 draft. - There are other ways to fulfil SC 1.3.1 - for instance, using supplementary text to convey information also conveyed by presentation (G117). More... almost 13 years ago
1. Remove need to scroll before determining the pointing direction. 2. Abstract out the including of the CSS, because we need the CSS in other frames on demand so the pointer can work. More... almost 13 years ago
Split out the calculation of which direction the pointer should go into its own function. If no direction works (for instance, it's BODY), disable the code snippet button. More... almost 13 years ago
The document.head construct does not exist in IE9. Using querySelector to get the head element as suggested by MDN. More... almost 13 years ago
1. Updated getCellHeaders(), changed the default headers code so that cells to the left and above of any header cells do not receive headers. This mainly applies to a table where the top-left cell is marked up as a td and should not have any headers. .. NB: "above and left" is used with presumption it's a LTR script. In RTL script, it'll be above and right (as that's how the cells are ordered), but will still work correctly. 2. Needed to change the sniff determining whether headers/scope was required, because it was breaking in certain circumstances (in particular, a 2x2 table with the top-left cell marked up as td) More... almost 13 years ago
Merge branch 'master' of github.com:squizlabs/HTML_CodeSniffer More... almost 13 years ago
1. If the run callback returns null/undefined, don't change the messages array. 2. Move the close actions to a separate close method; add removal of pointer. More... almost 13 years ago
Added getCurrentStandard() method to HTMLCSAuditor More... almost 13 years ago
Pointer fixes: 1. Scrolling needs to happen to the same window as the element. 2. We only need the dimensions of the pointer in relation to the frame, otherwise the pointer will be placed in the wrong location. More... almost 13 years ago
Merge branch 'master' of github.com:squizlabs/HTML_CodeSniffer More... almost 13 years ago
All frames (of the same domain), including inline frames, now considered when doing tests through the auditor. More... almost 13 years ago
Added licence headers More... almost 13 years ago
1. Add an openCallback to the options. .. This is separate to the runCallback because runCallback is called every time (including when standards are changed, or page is returned to the home screen). 2. Pointer now uses the owner document of the element which it is pointing to, instead of the owner document of the popup, so things don't break when pointing to other frames. More... almost 13 years ago
1. If the document is a frameset: .. The auditor will go into the largest frame (by square pixel size). .. Only frames in a frameset are handled for this purpose, not iframes. .. Cross-domain frames aren't counted due to security restrictions. .. The bookmarklet will need changing soon, as the CSS include is now added by the auditor (since it needs to know which frame it goes into). 2. Temporary change: now handles frames for checking, but only first frame is tested so far. TODO: change to all frames. 3. Added a close callback option (options.closeCallback) to go with the open callback (options.runCallback). More... almost 13 years ago
Fix trim function, incorrect var name. More... almost 13 years ago
SC 1.3.1: Changed incorrect nesting of headings to an error. Previously a warning, however there are arguments that the inconsistent outline generated by screen readers due to skipped headings result in incomplete or confusing information to those depending on that outline for navigation. This would then fail Conformance Requirement 4, because it would be argued that headings are not being used in an "Accessibility Supported" manner. More... almost 13 years ago
Added BSD licence for HTMLCS More... almost 13 years ago
String.trim() doesn't exist in IE8 - use the HTMLCS.util version. Not sure why was using it in the first place. More... almost 13 years ago
IE8 does not send the event as a parameter, rather sets window.event. Handle this so dragging works. More... almost 13 years ago
1. Replace an attempt to copy a ruleset with JSON to doing a plain shallow copy of properties. It's sufficient for simple objects like the rulesets. Had problems on sites and apps which defined their own toJSON() property (eg. IPBoard). 2. Building summary page no longer gets its own processing of messages, duplicating the run method. More... almost 13 years ago
Merge branch 'master' of github.com:squizlabs/HTML_CodeSniffer More... almost 13 years ago
getMessages(): return a copy of the array, so the class var isn't affected by operations such as splicing. More... almost 13 years ago
Added _options.runCallback which is called by Auditor once the HTMLCS messages are retrieved so extra filtering, and issue list modification can be made (e.g. re-ordering issues). Added _options.listUpdateCallback which is called when the issue list (the DOM element) is updated. More... almost 13 years ago
Fixed pointer positioning when page is scrolling up More... almost 13 years ago
Fixed pointer bounce effect for left, right, up directions. More... almost 13 years ago
Merge branch 'master' of https://github.com/sertand/HTML_CodeSniffer More... almost 13 years ago
Pass more information to the customIssueSource callback More... almost 13 years ago
Initial commit of the Auditor changes to allow it to be placed inside a specific element and enable scripts to provide custom interfaces for issue source panel More... almost 13 years ago