Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <div id="destination-list-template" style="display: none;"> | |
|
Dan Beam
2012/05/29 21:25:50
s/style="display: none;"/hidden/
Robert Toscano
2012/05/29 22:17:36
These are different. "hidden" will render the elem
Dan Beam
2012/05/29 22:30:18
[hidden] is just display: none; but from user-agen
Robert Toscano
2012/05/30 21:08:00
Sorry, I thought "hidden" = "visibility: hidden".
| |
| 2 <header class="destination-list-header"> | |
| 3 <h4 class="destination-list-title"></h4> | |
| 4 <button class="destination-list-action-link link-button"></button> | |
| 5 </header> | |
| 6 <ul class="destination-list-destination-list-item-container"></ul> | |
| 7 <div class="destination-list-no-destinations-message" | |
| 8 i18n-content="noDestinationsMessage"></div> | |
| 9 <footer class="destination-list-footer" style="display: none;"> | |
| 10 <button class="destination-list-show-all-button" | |
| 11 i18n-content="showAllButtonText"></button> | |
| 12 <span class="destination-list-total"></span> | |
| 13 </footer> | |
| 14 </div> | |
| OLD | NEW |