Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: polymer_1.0.4/bower_components/iron-a11y-announcer/demo/index.html

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <!--
3 @license
4 Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
5 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
6 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
7 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
8 Code distributed by Google as part of the polymer project is also
9 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
10 -->
11
12 <html>
13 <head>
14
15 <meta charset="utf-8">
16 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
17 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial- scale=1, user-scalable=yes">
18
19 <title>iron-a11y-announcer demo</title>
20
21 <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
22 <link rel="import" href="../../paper-styles/paper-styles.html">
23 <link rel="import" href="../../paper-styles/demo-pages.html">
24 <link rel="import" href="x-announces.html">
25
26
27 </head>
28 <body>
29 <div class="horizontal center-justified layout">
30 <div>
31 <div class="vertical-section">
32 <span>Note: in order to hear the announcements, be sure to turn on your favorite screen reader!</span>
33 <x-announces>Hello, my name is Ava.</x-announces>
34 <x-announces>This true sentence is false.</x-announces>
35 <x-announces>Are you paying attention?</x-announces>
36 </div>
37 </div>
38 </div>
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698