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

Side by Side Diff: chrome/browser/resources/ntp4/md_incognito_tab.html

Issue 2891153002: Add screen reader markup to the Incognito icon (Closed)
Patch Set: role=presentation Created 3 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html dir="$i18n{textdirection}" 2 <html dir="$i18n{textdirection}"
3 hascustombackground="$i18n{hasCustomBackground}" 3 hascustombackground="$i18n{hasCustomBackground}"
4 bookmarkbarattached="$i18n{bookmarkbarattached}" 4 bookmarkbarattached="$i18n{bookmarkbarattached}"
5 lang="$i18n{language}" 5 lang="$i18n{language}"
6 class="md"> 6 class="md">
7 <head> 7 <head>
8 <meta charset="utf-8"> 8 <meta charset="utf-8">
9 <title>$i18n{title}</title> 9 <title>$i18n{title}</title>
10 <meta name="viewport" content="width=device-width"> 10 <meta name="viewport" content="width=device-width">
11 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 11 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
12 <link rel="stylesheet" href="md_incognito_tab.css"> 12 <link rel="stylesheet" href="md_incognito_tab.css">
13 <script> 13 <script>
14 // Until themes can clear the cache, force-reload the theme stylesheet. 14 // Until themes can clear the cache, force-reload the theme stylesheet.
15 document.write('<link id="incognitothemecss" rel="stylesheet" ' + 15 document.write('<link id="incognitothemecss" rel="stylesheet" ' +
16 'href="chrome://theme/css/incognito_new_tab_theme.css?' + 16 'href="chrome://theme/css/incognito_new_tab_theme.css?' +
17 Date.now() + '">'); 17 Date.now() + '">');
18 </script> 18 </script>
19 </head> 19 </head>
20 <body> 20 <body>
21 <div class="content"> 21 <div class="content">
22 <div class="icon"></div> 22 <div class="icon" role="presentation" alt=""></div>
23 <h1>$i18n{incognitoTabHeading}</h1> 23 <h1>$i18n{incognitoTabHeading}</h1>
24 <p id="subtitle"> 24 <p id="subtitle">
25 <span>$i18n{incognitoTabDescription}</span> 25 <span>$i18n{incognitoTabDescription}</span>
26 <a class="learn-more-button" 26 <a class="learn-more-button"
27 href="$i18n{learnMoreLink}">$i18n{learnMore}</a> 27 href="$i18n{learnMoreLink}">$i18n{learnMore}</a>
28 </p> 28 </p>
29 <div> 29 <div>
30 <div class="bulletpoints">$i18nRaw{incognitoTabFeatures}</div> 30 <div class="bulletpoints">$i18nRaw{incognitoTabFeatures}</div>
31 <div class="bulletpoints">$i18nRaw{incognitoTabWarning}</div> 31 <div class="bulletpoints">$i18nRaw{incognitoTabWarning}</div>
32 <div class="clearer"></div> 32 <div class="clearer"></div>
33 </div> 33 </div>
34 <a class="learn-more-button" href="$i18n{learnMoreLink}">$i18n{learnMore}</a> 34 <a class="learn-more-button" href="$i18n{learnMoreLink}">$i18n{learnMore}</a>
35 </div> 35 </div>
36 <script src="chrome://resources/js/cr.js"></script> 36 <script src="chrome://resources/js/cr.js"></script>
37 <script src="chrome://resources/js/util.js"></script> 37 <script src="chrome://resources/js/util.js"></script>
38 <script src="md_incognito_tab.js"></script> 38 <script src="md_incognito_tab.js"></script>
39 </body> 39 </body>
40 </html> 40 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698