ariahistogramtests.html revision 4c307472e86c080e30ac5eb2ce60ab4f6fc10b28
<html>
<head>
<style>
/*Supplemental: CSS for the YUI distribution*/
#custom-doc { width: 95%; min-width: 950px; }
#mychart {
padding:10px 10px 10px 10px;
}
</style>
</head>
<body class="yui3-skin-sam">
<h3>Aria Histogram Tests</h3>
<div id="mychart"></div>
<script>
YUI({
allowRollup: false,
filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min'
}).use('charts', 'test', 'console', function (Y)
{
var suite = new Y.Test.Suite("Y.Charts.AriaHistogram"),
myDataValues = [
],
pieDataValues = [
],
defaultAriaDescription = "Use the up and down keys to navigate between series. Use the left and right keys to navigate through items in a series.",
defaultPieAriaDescription = "Use the left and right keys to navigate through items.",
seriesKeys = ["values", "revenue"],
width = 400,
height = 300;
function AriaTests(cfg, testConfig)
{
this.attrConfig = cfg;
this.name = testConfig.type + " Aria Tests";
}
Y.extend(AriaTests, Y.Test.Case, {
defaultAriaLabel: "Chart Application",
changedAriaLabel: "This is a new ariaLabel value.",
setUp: function() {
var mychart = new Y.Chart(this.attrConfig);
this.chart = mychart;
},
tearDown: function() {
},
"test:getAriaLabel()": function()
{
},
"test:setAriaLabel()": function()
{
var chart = this.chart;
chart.set("ariaLabel", this.changedAriaLabel);
},
"test:getAriaDescription()": function()
{
},
"test:setAriaDescription()": function()
{
var chart = this.chart;
chart.set("ariaDescription", this.changedAriaLabel);
}
});
Y.AriaTests = AriaTests;
var columnTests = new Y.AriaTests({
dataProvider: myDataValues,
render: "#mychart",
type: "column",
width: width,
height: height
}, {
type: "Column",
defaultAriaDescription: defaultAriaDescription
}),
stackedColumnTests = new Y.AriaTests({
dataProvider: myDataValues,
render: "#mychart",
type: "column",
stacked: true,
width: width,
height: height
}, {
type: "StackedColumn",
defaultAriaDescription: defaultAriaDescription
}),
barTests = new Y.AriaTests({
dataProvider: myDataValues,
render: "#mychart",
type: "bar",
width: width,
height: height
}, {
type: "Bar",
defaultAriaDescription: defaultAriaDescription
}),
stackedBarTests = new Y.AriaTests({
dataProvider: myDataValues,
render: "#mychart",
type: "bar",
stacked: true,
width: width,
height: height
}, {
type: "StackedBar",
defaultAriaDescription: defaultAriaDescription
});
suite.add(columnTests);
suite.add(stackedColumnTests);
suite.add(barTests);
suite.add(stackedBarTests);
//create the console
var r = new Y.Console({
newestOnTop : false,
style: 'block' // to anchor in the example content
});
r.render('#testLogger');
//run the tests
Y.Test.Runner.add(suite);
});
</script>
</body>
</html>