I hereby claim:
- I am dfreedm on github.
- I am dfreedm (https://keybase.io/dfreedm) on keybase.
- I have a public key ASAYytHy5O5ES0jEtRcQTq1YOQ83mg_njh3WLjX494J-Qwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <html> | |
| <head> | |
| <!-- Polyfills only needed for Firefox and Edge. --> | |
| <script src="https://unpkg.com/@webcomponents/webcomponentsjs@next/webcomponents-loader.js"></script> | |
| </head> | |
| <body> | |
| <!-- Works only on browsers that support Javascript modules like | |
| Chrome, Safari, Firefox 60, Edge 17 --> | |
| <script type="module"> | |
| import 'https://unpkg.com/@material/mwc-icon@latest/mwc-icon.js?module'; |
| async function axeReport(dom, config = {}) { | |
| const {cleanup, axeConfig} = config; | |
| const {violations} = await axe.run(dom, axeConfig || { | |
| runOnly: ['wcag2a', 'wcag2aa', 'section508'], | |
| // we don't care about passing tests | |
| resultTypes: ['violations'] | |
| }); | |
| await cleanup(); | |
| if (!violations.length) { | |
| return; |
| /** | |
| @license | |
| Copyright (c) 2016 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 | |
| */ |
| #!/usr/bin/env node | |
| /** | |
| * @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 | |
| */ |
| <!-- Reference implementation for date-combo-box | |
| Reference link: https://github.com/w3c/webcomponents/wiki/Proposal-for-changes-to-manage-Shadow-DOM-content-distribution/641b524e633678c2b25e7cb8ba31005350f36c9d#proposal-part-2-filling-and-re-exposing-named-insertion-points | |
| --> | |
| <!-- For date-combo-box, which inherits from combo-box --> | |
| <template> | |
| <input type="date" content-slot="inputElement"> | |
| <img src="calendarIcon.png" content-slot="icon"> | |
| <month-calendar content-slot="dropdown"></month-calendar> | |
| </template> |
| #!/usr/bin/env node | |
| /** | |
| * @license | |
| * Copyright (c) 2014 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 | |
| */ |
| <link rel="import" href="../notification-elements/notification-alert.html"> | |
| <link rel="import" href="../core-icon-button/core-icon-button.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; |
| <link rel="import" href="../core-icon-button/core-icon-button.html"> | |
| <link rel="import" href="../notification-elements/notification-alert.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; |