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

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

Issue 2454213002: Use modes to switch cvox panel between collapsed, menus, focused, and tutorial (Closed)
Patch Set: Created 4 years, 1 month 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 <button id="options" aria-labelledby="options_title"></button> 44 <button id="options" aria-labelledby="options_title"></button>
45 <div hidden id="disable_chromevox_title" class="i18n" 45 <div hidden id="disable_chromevox_title" class="i18n"
46 msgid="disable_chromevox"></div> 46 msgid="disable_chromevox"></div>
47 <button id="close" aria-labelledby="disable_chromevox_title"></button> 47 <button id="close" aria-labelledby="disable_chromevox_title"></button>
48 </div> 48 </div>
49 </div> 49 </div>
50 <div id="menus_background"> 50 <div id="menus_background">
51 <div id="menu-bar" aria-role="menubar"> 51 <div id="menu-bar" aria-role="menubar">
52 </div> 52 </div>
53 </div> 53 </div>
54 <div id="tutorial" style="display: none;"> 54 <div id="tutorial" hidden>
55 <div id="tutorial_logo"></div> 55 <div id="tutorial_logo"></div>
56 <div hidden id="close_tutorial_title" class="i18n" msgid="close_tutorial"></di v> 56 <div hidden id="close_tutorial_title" class="i18n" msgid="close_tutorial"></di v>
57 <button id="close_tutorial" aria-labelledby="close_tutorial_title"></button> 57 <button id="close_tutorial" aria-labelledby="close_tutorial_title"></button>
58 <div id="tutorial_main"> 58 <div id="tutorial_main">
59 </div> 59 </div>
60 <div id="tutorial_footer"> 60 <div id="tutorial_footer">
61 <button id="tutorial_previous" class="i18n" msgid="tutorial_previous"></butt on> 61 <button id="tutorial_previous" class="i18n" msgid="tutorial_previous"></butt on>
62 <button id="tutorial_next" class="i18n" msgid="tutorial_next"></button> 62 <button id="tutorial_next" class="i18n" msgid="tutorial_next"></button>
63 </div> 63 </div>
64 </div> 64 </div>
65 </body> 65 </body>
66 </html> 66 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698