Chromium Code Reviews| Index: chrome/browser/resources/settings/about_page/about_page.html |
| diff --git a/chrome/browser/resources/settings/about_page/about_page.html b/chrome/browser/resources/settings/about_page/about_page.html |
| index 3e4f02952002eceba0941e2c5fd70f26d49ca3e6..57e7d29df99a31c6d156d5f46c3ace86dc364c75 100644 |
| --- a/chrome/browser/resources/settings/about_page/about_page.html |
| +++ b/chrome/browser/resources/settings/about_page/about_page.html |
| @@ -99,16 +99,22 @@ |
| obsoleteSystemInfo_, currentUpdateStatusEvent_)]]"> |
| </iron-icon> |
| <div class="start"> |
| - <div id="updateStatusMessage" hidden="[[!showUpdateStatus_]]" |
| <if expr="not chromeos"> |
| + <div id="updateStatusMessage" hidden="[[!showUpdateStatus_]]" |
| inner-h-t-m-l="[[getUpdateStatusMessage_( |
| currentUpdateStatusEvent_)]]"> |
| + </div> |
| </if> |
| <if expr="chromeos"> |
| + <div id="updateStatusMessage" hidden="[[!showUpdateStatus_]]" |
| inner-h-t-m-l="[[getUpdateStatusMessage_( |
| currentUpdateStatusEvent_, targetChannel_)]]"> |
| -</if> |
| </div> |
| + <div id="updateStatusMessage" hidden="[[!showConnectionType_]]" |
|
dpapad
2017/02/16 21:22:27
Having two elements with the same ID in the DOM do
stevenjb
2017/02/17 01:06:01
Oops. Copy/paste bug. I'll change the id and add a
dpapad
2017/02/17 01:14:38
Conceptually the connection types error message is
stevenjb
2017/02/17 01:28:51
I feel like there is a difference between embeddin
dpapad
2017/02/17 02:44:28
FWIW, the <b> is just a trick. We don't actually i
|
| + inner-h-t-m-l="[[ |
| + currentUpdateStatusEvent_.connectionTypes]]"> |
| + </div> |
| +</if> |
| <span id="deprecationWarning" |
| hidden="[[!obsoleteSystemInfo_.obsolete]]"> |
| $i18n{aboutObsoleteSystem} |