Vectorize sad tab image.
[chromium-blink-merge.git] / chrome / browser / resources / settings / a11y_page / a11y_page.js
blob7696f476e3f62e2a47fb155218722283e2900dc1
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 /**
6 * @fileoverview
7 * 'cr-settings-a11y-page' is the settings page containing accessibility
8 * settings.
10 * Example:
12 * <iron-animated-pages>
13 * <cr-settings-a11y-page prefs="{{prefs}}"></cr-settings-a11y-page>
14 * ... other pages ...
15 * </iron-animated-pages>
17 * @group Chrome Settings Elements
18 * @element cr-settings-a11y-page
20 Polymer({
21 is: 'cr-settings-a11y-page',
23 properties: {
24 /**
25 * Preferences state.
27 prefs: {
28 type: Object,
29 notify: true,
32 });