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

Side by Side Diff: chrome/browser/resources/print_preview/search/destination_list_item.html

Issue 2760753002: [CUPS] Implement the local CUPS printer setup waiting UI. (Closed)
Patch Set: Address skau@'s comment. Rebase Created 3 years, 8 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 <li id="destination-list-item-template" class="destination-list-item" hidden 1 <li id="destination-list-item-template" class="destination-list-item" hidden
2 tabindex="0"> 2 tabindex="0">
3 <span class="destination-list-item-content"> 3 <span class="destination-list-item-content">
4 <img class="destination-list-item-icon" alt=""> 4 <img class="destination-list-item-icon" alt="">
5 <span class="destination-list-item-name"></span> 5 <span class="destination-list-item-name"></span>
6 <span class="offline-status" hidden></span> 6 <span class="offline-status" hidden></span>
7 <span class="register-promo" hidden> 7 <span class="register-promo" hidden>
8 <button class="register-promo-button"> 8 <button class="register-promo-button">
9 $i18n{registerPromoButtonText} 9 $i18n{registerPromoButtonText}
10 </button> 10 </button>
11 </span> 11 </span>
12 <span class="extension-controlled-indicator" hidden> 12 <span class="extension-controlled-indicator" hidden>
13 <span class="extension-name"></span> 13 <span class="extension-name"></span>
14 <span class="extension-icon" role="button" tabindex="0"></span> 14 <span class="extension-icon" role="button" tabindex="0"></span>
15 </span> 15 </span>
16 <span class="configuring-in-progress-text" hidden>
17 <span>$i18n{configuringInProgressText}</span>
18 <span class="jumping-dots">
19 <span>.</span><span>.</span><span>.</span>
dpapad 2017/03/30 20:56:23 Can you check if this animation is running in the
xdai1 2017/03/30 23:18:43 Since it's an infinite animation, I think it's sti
20 </span>
21 </span>
22 <span class="configuring-failed-text" hidden>
23 <span>$i18n{configuringFailedText}</span>
dpapad 2017/03/30 20:56:23 Are both <span>s necessary? Why not <span class="
xdai1 2017/03/30 23:18:43 Removed it.
24 </span>
16 </span> 25 </span>
17 </li> 26 </li>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698