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

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 dpapad@'s comments. Fix failed test. 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 <if expr="chromeos">
17 <span class="configuring-in-progress-text" hidden>
18 $i18n{configuringInProgressText}
19 <span class="configuring-text-jumping-dots">
20 <span>.</span><span>.</span><span>.</span>
21 </span>
22 </span>
23 <span class="configuring-failed-text" hidden>
24 $i18n{configuringFailedText}
25 </span>
26 </if>
16 </span> 27 </span>
17 </li> 28 </li>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698