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

Side by Side Diff: chrome/browser/resources/md_bookmarks/app.html

Issue 2955563002: MD Bookmarks: Initial screenreader accessibility improvements (Closed)
Patch Set: Privatize and rebase Created 3 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 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 2
3 <link rel="import" href="chrome://resources/html/cr/ui/splitter.html"> 3 <link rel="import" href="chrome://resources/html/cr/ui/splitter.html">
4 <link rel="import" href="chrome://bookmarks/api_listener.html"> 4 <link rel="import" href="chrome://bookmarks/api_listener.html">
5 <link rel="import" href="chrome://bookmarks/command_manager.html"> 5 <link rel="import" href="chrome://bookmarks/command_manager.html">
6 <link rel="import" href="chrome://bookmarks/constants.html"> 6 <link rel="import" href="chrome://bookmarks/constants.html">
7 <link rel="import" href="chrome://bookmarks/dnd_manager.html"> 7 <link rel="import" href="chrome://bookmarks/dnd_manager.html">
8 <link rel="import" href="chrome://bookmarks/folder_node.html"> 8 <link rel="import" href="chrome://bookmarks/folder_node.html">
9 <link rel="import" href="chrome://bookmarks/list.html"> 9 <link rel="import" href="chrome://bookmarks/list.html">
10 <link rel="import" href="chrome://bookmarks/router.html"> 10 <link rel="import" href="chrome://bookmarks/router.html">
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 width: var(--min-sidebar-width); 62 width: var(--min-sidebar-width);
63 } 63 }
64 64
65 bookmarks-list { 65 bookmarks-list {
66 flex: 1; 66 flex: 1;
67 min-width: 550px; 67 min-width: 550px;
68 } 68 }
69 </style> 69 </style>
70 <bookmarks-toolbar sidebar-width="[[sidebarWidth_]]"></bookmarks-toolbar> 70 <bookmarks-toolbar sidebar-width="[[sidebarWidth_]]"></bookmarks-toolbar>
71 <div id="main-container"> 71 <div id="main-container">
72 <div id="sidebar"> 72 <div id="sidebar" role="tree">
73 <bookmarks-folder-node item-id="0" depth="-1"></bookmarks-folder-node> 73 <bookmarks-folder-node item-id="0" depth="-1"></bookmarks-folder-node>
74 </div> 74 </div>
75 <div id="splitter"></div> 75 <div id="splitter"></div>
76 <bookmarks-list></bookmarks-list> 76 <bookmarks-list></bookmarks-list>
77 </div> 77 </div>
78 <bookmarks-router></bookmarks-router> 78 <bookmarks-router></bookmarks-router>
79 <bookmarks-command-manager></bookmarks-command-manager> 79 <bookmarks-command-manager></bookmarks-command-manager>
80 <bookmarks-toast-manager duration="5000"></bookmarks-toast-manager> 80 <bookmarks-toast-manager duration="5000"></bookmarks-toast-manager>
81 </template> 81 </template>
82 <script src="chrome://bookmarks/app.js"></script> 82 <script src="chrome://bookmarks/app.js"></script>
83 </dom-module> 83 </dom-module>
OLDNEW
« no previous file with comments | « chrome/app/bookmarks_strings.grdp ('k') | chrome/browser/resources/md_bookmarks/command_manager.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698