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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.html

Issue 2108963003: Initial draft of ChromeVox Next tutorial. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switched to use showNextUpdatePage Created 4 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
1 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 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 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 <html> 4 <html>
5 <head> 5 <head>
6 <meta charset="utf-8"> 6 <meta charset="utf-8">
7 <title class="i18n" msgid="panel_title"></title> 7 <title class="i18n" msgid="panel_title"></title>
8 8
9 <link href="http://fonts.googleapis.com/css?family=Droid+Sans+Mono|Roboto:400,70 0,700italic" rel="stylesheet" type="text/css"> 9 <link href="http://fonts.googleapis.com/css?family=Droid+Sans+Mono|Roboto:400,70 0,700italic" rel="stylesheet" type="text/css">
10 <link href="panel.css" rel="stylesheet" type="text/css"> 10 <link href="panel.css" rel="stylesheet" type="text/css">
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 <button id="options" aria-labelledby="options_title"></button> 43 <button id="options" aria-labelledby="options_title"></button>
44 <div hidden id="disable_chromevox_title" class="i18n" 44 <div hidden id="disable_chromevox_title" class="i18n"
45 msgid="disable_chromevox"></div> 45 msgid="disable_chromevox"></div>
46 <button id="close" aria-labelledby="disable_chromevox_title"></button> 46 <button id="close" aria-labelledby="disable_chromevox_title"></button>
47 </div> 47 </div>
48 </div> 48 </div>
49 <div id="menus_background"> 49 <div id="menus_background">
50 <div id="menu-bar" aria-role="menubar"> 50 <div id="menu-bar" aria-role="menubar">
51 </div> 51 </div>
52 </div> 52 </div>
53 <div id="tutorial" style="display: none;">
54 <div id="tutorial_logo"></div>
55 <div hidden id="close_tutorial_title" class="i18n" msgid="close_tutorial"></di v>
56 <button id="close_tutorial" aria-labelledby="close_tutorial_title"></button>
57 <div id="tutorial_main">
58 </div>
59 <div id="tutorial_footer">
60 <button id="tutorial_previous" class="i18n" msgid="tutorial_previous"></butt on>
61 <button id="tutorial_next" class="i18n" msgid="tutorial_next"></button>
62 </div>
63 </div>
53 </body> 64 </body>
54 </html> 65 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698