| Index: lib/src/paper-checkbox/test/basic.html
|
| diff --git a/lib/src/paper-checkbox/test/basic.html b/lib/src/paper-checkbox/test/basic.html
|
| index 38e2a4cc1eefe6986e6b7ace7191ca8fccec1c31..5461266388dc9e2161797761961d2f688609467b 100644
|
| --- a/lib/src/paper-checkbox/test/basic.html
|
| +++ b/lib/src/paper-checkbox/test/basic.html
|
| @@ -96,16 +96,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| c1.checked = true;
|
| assert.isTrue(c1.validate());
|
| });
|
| -
|
| - test('checkbox label can be updated', function() {
|
| - Polymer.dom(c1).textContent = 'Batman';
|
| - c1.updateAriaLabel();
|
| - assert.isTrue(c1.getAttribute('aria-label') == 'Batman');
|
| -
|
| - Polymer.dom(c1).textContent = 'Robin';
|
| - c1.updateAriaLabel();
|
| - assert.isTrue(c1.getAttribute('aria-label') == 'Robin');
|
| - });
|
| });
|
|
|
| suite('a11y', function() {
|
| @@ -126,10 +116,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| assert.isTrue(!c1.getAttribute('aria-label'));
|
| });
|
|
|
| - test('checkbox with a label sets an aria label', function() {
|
| - assert.isTrue(c2.getAttribute('aria-label') == "Batman");
|
| - });
|
| -
|
| test('checkbox respects the user set aria-label', function() {
|
| var c = fixture('AriaLabel');
|
| assert.isTrue(c.getAttribute('aria-label') == "Batman");
|
|
|