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

Side by Side Diff: chrome/test/data/extensions/samples/gmail/gmail_checker.html

Issue 100182: Fix race where sometimes CSS is not applied to toolstrips. I (Closed)
Patch Set: Merged Created 11 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <link rel="stylesheet" type="text/css" href="extensions_toolstrip.css">
4 <link rel="stylesheet" type="text/css" href="styles.css"> 3 <link rel="stylesheet" type="text/css" href="styles.css">
5 <script> 4 <script>
6 gmail_atom_href = "http://mail.google.com/mail/feed/atom"; 5 gmail_atom_href = "http://mail.google.com/mail/feed/atom";
7 var poll_timeout = 2000; 6 var poll_timeout = 2000;
8 var unreadCount; 7 var unreadCount;
9 var debug = true; 8 var debug = true;
10 9
11 function gmailNSResolver(prefix) { 10 function gmailNSResolver(prefix) {
12 if(prefix == 'gmail') { 11 if(prefix == 'gmail') {
13 return 'http://purl.org/atom/ns#'; 12 return 'http://purl.org/atom/ns#';
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 79
81 </script> 80 </script>
82 </head> 81 </head>
83 <body onload="requestUnreadFeed();" onclick="goToInbox()"> 82 <body onload="requestUnreadFeed();" onclick="goToInbox()">
84 <div class="toolstrip-button"> 83 <div class="toolstrip-button">
85 <img src="gmail.png" style="width:auto; height:auto"> 84 <img src="gmail.png" style="width:auto; height:auto">
86 <span>Gmail - Inbox <span style="display: inline-block;" id="unreadCount" cl ass="base-flip" onclick="startFlip();"></span></span> 85 <span>Gmail - Inbox <span style="display: inline-block;" id="unreadCount" cl ass="base-flip" onclick="startFlip();"></span></span>
87 </div> 86 </div>
88 </body> 87 </body>
89 </html> 88 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/samples/gmail/extensions_toolstrip.css ('k') | chrome/test/data/extensions/samples/subscribe.crx » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698