forked from jquery-archive/css-chassis
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes jquery-archive#99
- Loading branch information
Showing
8 changed files
with
160 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ external/ | |
icons/svg-min/ | ||
.sass-cache/ | ||
dist/ | ||
tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<!doctype html> | ||
<html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>CSS Chassis - Typography</title> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
|
||
|
||
function color(code, str) { | ||
return "\u001b[" + code + "m" + str + "\u001b[0m"; | ||
} | ||
|
||
exports = module.exports = function( grunt, results, threshold ) { | ||
var pass = true; | ||
results.forEach( function ( result ) { | ||
grunt.log.subhead( result.url ); | ||
var violations = result.violations; | ||
if ( violations.length ) { | ||
if ( violations.length > threshold ) { | ||
pass = false; | ||
grunt.log.error( "Found " + result.violations.length + " accessibility violations:" ); | ||
} else { | ||
grunt.log.ok( "Found " + result.violations.length + " accessibility violations: (under threshold of " + threshold + ")" ); | ||
} | ||
result.violations.forEach( function( ruleResult ) { | ||
grunt.log.subhead( " " + color(31, "\u00D7") + " " + ruleResult.help ); | ||
|
||
ruleResult.nodes.forEach( function( violation, index ) { | ||
grunt.log.writeln( " " + ( index + 1 ) + ". " + JSON.stringify( violation.target ) ); | ||
|
||
if ( violation.any.length ) { | ||
grunt.log.writeln( " Fix any of the following:" ); | ||
violation.any.forEach( function( check ) { | ||
grunt.log.writeln( " \u2022 " + check.message ); | ||
} ); | ||
} | ||
|
||
var alls = violation.all.concat( violation.none ); | ||
if ( alls.length ) { | ||
grunt.log.writeln( " Fix all of the following:" ); | ||
alls.forEach( function( check ) { | ||
grunt.log.writeln( " \u2022 " + check.message ); | ||
} ); | ||
} | ||
grunt.log.writeln(); | ||
}); | ||
}); | ||
return; | ||
} else { | ||
grunt.log.ok( "Found no accessibility violations." ); | ||
} | ||
} ); | ||
return pass; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/*! aXe-grunt-webdriver | ||
* Copyright (c) 2015 Deque Systems, Inc. | ||
* | ||
* Your use of this Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
* | ||
* This entire copyright notice must appear in every copy of this file you | ||
* distribute or in any file that contains substantial portions of this source | ||
* code. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
module.exports = function( grunt ) { | ||
var WebDriver = require( "selenium-webdriver" ), | ||
AxeBuilder = require( "axe-webdriverjs" ), | ||
Promise = require( "promise" ), | ||
path = require( "path" ), | ||
reporter = require( "../lib/reporter" ); | ||
|
||
grunt.registerMultiTask( "axe-webdriver", "Grunt plugin for aXe utilizing WebDriverJS", function () { | ||
var options = this.options( { | ||
browser: "firefox", | ||
server: null, | ||
threshold: 0 | ||
} ); | ||
|
||
var done = this.async (); | ||
var driver = new WebDriver.Builder () | ||
.forBrowser( options.browser ) | ||
.build (); | ||
|
||
var dest = this.data.dest; | ||
Promise.all( this.data.urls.map( function( url ) { | ||
return new Promise( function( resolve, reject ) { | ||
|
||
driver | ||
.get( url ) | ||
.then( function() { | ||
new AxeBuilder( driver ) | ||
.analyze( function( results ) { | ||
results.url = url; | ||
resolve( results ); | ||
} ); | ||
} ); | ||
} ); | ||
})).then( function( results ) { | ||
if ( dest ) { | ||
grunt.file.write( dest, JSON.stringify( results, null, " " ) ); | ||
} | ||
var result = reporter( grunt, results, options.threshold ); | ||
driver.quit().then( function () { | ||
done( result ); | ||
} ); | ||
} ); | ||
} ); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
module.exports = { | ||
firefox: { | ||
options: { | ||
threshold: 0 | ||
}, | ||
urls: ['http://localhost:4200/demos/typography.html'], | ||
dest: 'tmp/gu.json' | ||
}, | ||
chrome: { | ||
options: { | ||
browser: 'chrome', | ||
threshold: 0 | ||
}, | ||
urls: ['http://localhost:4200/demos/typography.html'] | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters