Home | History | Annotate | Download | only in demo
      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.github.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/CONTRIBUTORS.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/PATENTS.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/demo-pages.html">
     23   <link rel="import" href="x-announces.html">
     24 
     25 </head>
     26 <body>
     27   <div class="horizontal-section-container">
     28     <div>
     29       <div class="vertical-section">
     30         <span>Note: in order to hear the announcements, be sure to turn on your favorite screen reader!</span>
     31         <x-announces>Hello, my name is Ava.</x-announces>
     32         <x-announces>This true sentence is false.</x-announces>
     33         <x-announces>Are you paying attention?</x-announces>
     34       </div>
     35     </div>
     36   </div>
     37 </body>
     38 </html>
     39