-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #14 Release v.1.1.0
- Loading branch information
Showing
3 changed files
with
44 additions
and
2 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "paper-audio-player", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"authors": [ | ||
"Nadi Dikun <[email protected]>" | ||
], | ||
|
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,41 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes"> | ||
|
||
<script src="../../webcomponentsjs/webcomponents-lite.js"></script> | ||
<script src="../../web-component-tester/browser.js"></script> | ||
<script src="../../test-fixture/test-fixture-mocha.js"></script> | ||
<script src="../../iron-test-helpers/mock-interactions.js"></script> | ||
|
||
|
||
<!-- Import the paper-audio-player element --> | ||
<link rel="import" href="../../test-fixture/test-fixture.html"> | ||
<link rel="import" href="../paper-audio-player.html"> | ||
</head> | ||
<body> | ||
|
||
<!-- Resizing player --> | ||
<test-fixture id="a11y"> | ||
<template> | ||
<paper-audio-player src="./pink-shades-o-pnr.mp3"></paper-audio-player> | ||
</template> | ||
</test-fixture> | ||
|
||
<script> | ||
|
||
suite('a11y', function() { | ||
var a11y; | ||
|
||
setup(function() { | ||
a11y = fixture('a11y'); | ||
}); | ||
|
||
a11ySuite('a11y'); | ||
}); | ||
|
||
</script> | ||
|
||
</body> | ||
</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