eb240478
Luigi Serra
public room cards...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!doctype html>
<!--
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<html>
<head>
<meta charset="UTF-8">
<title>paper-slider a11y test</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<script src="../../webcomponentsjs/webcomponents-lite.js"></script>
<script src="../../web-component-tester/browser.js"></script>
|
c5169e0e
Renato De Donato
a new hope
|
19
|
<script src="../../test-fixture/test-fixture-mocha.js"></script>
|
eb240478
Luigi Serra
public room cards...
|
20
21
22
|
<script src="../../iron-test-helpers/mock-interactions.js"></script>
<link rel="import" href="../paper-slider.html">
|
c5169e0e
Renato De Donato
a new hope
|
23
|
<link rel="import" href="../../test-fixture/test-fixture.html">
|
eb240478
Luigi Serra
public room cards...
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
</head>
<body>
<test-fixture id="trivialSlider">
<template>
<paper-slider min="0" max="100" value="50"></paper-slider>
</template>
</test-fixture>
<script>
suite('a11y', function() {
var slider;
setup(function() {
slider = fixture('trivialSlider');
});
test('has aria role "slider"', function() {
assert.equal(slider.getAttribute('role'), 'slider');
assert.equal(slider.getAttribute('aria-valuemin'), slider.min);
assert.equal(slider.getAttribute('aria-valuemax'), slider.max);
assert.equal(slider.getAttribute('aria-valuenow'), slider.value);
});
|
a1a3bc73
Luigi Serra
graphs updates
|
48
|
test('interacting without keyboard causes no ripple', function() {
|
a1a3bc73
Luigi Serra
graphs updates
|
49
|
MockInteractions.down(slider.$.sliderKnob);
|
c5169e0e
Renato De Donato
a new hope
|
50
|
assert.isTrue(slider.hasRipple());
|
eb240478
Luigi Serra
public room cards...
|
51
52
53
54
55
56
57
58
|
var ripple = slider.getRipple();
assert.equal(ripple.offsetHeight, 0);
assert.equal(ripple.offsetWidth, 0);
});
test('interacting with keyboard causes ripple', function() {
MockInteractions.focus(slider);
MockInteractions.pressSpace(slider.$.sliderKnob);
|
c5169e0e
Renato De Donato
a new hope
|
59
|
assert.isTrue(slider.hasRipple());
|
eb240478
Luigi Serra
public room cards...
|
60
61
62
63
64
65
66
67
68
69
70
71
72
|
var ripple = slider.getRipple();
assert.isAbove(ripple.offsetHeight, 0);
assert.isAbove(ripple.offsetWidth, 0);
});
a11ySuite('trivialSlider');
});
</script>
</body>
</html>
|