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

Side by Side Diff: chrome/browser/resources/chromeos/arc_support/main.html

Issue 2254673003: arc: avoid checkbox AutomationNode issue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « chrome/browser/resources/chromeos/arc_support/main.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> 4 <link rel="stylesheet" href="chrome://resources/css/roboto.css">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu tton.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu tton.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper- progress.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper- progress.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas ses/iron-flex-layout.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/clas ses/iron-flex-layout.html">
8 <style is="custom-style"> 8 <style is="custom-style">
9 paper-progress { 9 paper-progress {
10 display: block; 10 display: block;
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 <img class="image-header" src="images/header.png"> 56 <img class="image-header" src="images/header.png">
57 <div class="scrollable" > 57 <div class="scrollable" >
58 <div class="content section-flex"> 58 <div class="content section-flex">
59 <p class="text-title" i18n-content="greetingHeader"></p> 59 <p class="text-title" i18n-content="greetingHeader"></p>
60 <p class="text-desc" i18n-content="greetingDescription"></p> 60 <p class="text-desc" i18n-content="greetingDescription"></p>
61 <p class="text-terms-title" i18n-content="termsOfService"></p> 61 <p class="text-terms-title" i18n-content="termsOfService"></p>
62 <div class="section-terms" id ="terms-container"> 62 <div class="section-terms" id ="terms-container">
63 <webview id="terms-view" partition="persist:arc_support"></webview> 63 <webview id="terms-view" partition="persist:arc_support"></webview>
64 </div> 64 </div>
65 <label class="layout horizontal section-checkbox-container"> 65 <label class="layout horizontal section-checkbox-container">
66 <div class="checkbox-container" id="enable-metrics-container" hidden> 66 <input type="checkbox" class="checkbox-option" id="enable-metrics">
khmel 2016/08/17 23:24:50 Div is required here, please see my comment: https
yawano 2016/08/17 23:54:06 Does it happen with myCL? That's the reason I've a
67 <input type="checkbox" class="checkbox-option" id="enable-metrics">
68 </div>
69 <p class="checkbox-text" id="text-metrics"></p> 67 <p class="checkbox-text" id="text-metrics"></p>
70 </label> 68 </label>
71 <label class="layout horizontal section-checkbox-container"> 69 <label class="layout horizontal section-checkbox-container">
72 <div class="checkbox-container"> 70 <input type="checkbox" class="checkbox-option"
73 <input type="checkbox" class="checkbox-option" 71 id="enable-backup-restore">
74 id="enable-backup-restore">
75 </div>
76 <p class="checkbox-text" id="text-backup-restore"></p> 72 <p class="checkbox-text" id="text-backup-restore"></p>
77 </label> 73 </label>
78 <label class="layout horizontal section-checkbox-container"> 74 <label class="layout horizontal section-checkbox-container">
79 <div class="checkbox-container"> 75 <input type="checkbox" class="checkbox-option"
80 <input type="checkbox" class="checkbox-option" 76 id="enable-location-service">
81 id="enable-location-service">
82 </div>
83 <p class="checkbox-text" id="text-location-service"></p> 77 <p class="checkbox-text" id="text-location-service"></p>
84 </label> 78 </label>
85 <div class="layout horizontal end-justified section-buttons"> 79 <div class="layout horizontal end-justified section-buttons">
86 <paper-button class="white" id="button-cancel" 80 <paper-button class="white" id="button-cancel"
87 i18n-content="buttonCancel"> 81 i18n-content="buttonCancel">
88 </paper-button> 82 </paper-button>
89 <div class="button-separator"></div> 83 <div class="button-separator"></div>
90 <paper-button class="blue" id="button-agree" 84 <paper-button class="blue" id="button-agree"
91 i18n-content="buttonAgree"> 85 i18n-content="buttonAgree">
92 </paper-button> 86 </paper-button>
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 <paper-button class="blue" id="button-send-feedback" 121 <paper-button class="blue" id="button-send-feedback"
128 i18n-content="buttonSendFeedback"> 122 i18n-content="buttonSendFeedback">
129 </paper-button> 123 </paper-button>
130 <paper-button class="blue" id="button-retry" i18n-content="buttonRetry"> 124 <paper-button class="blue" id="button-retry" i18n-content="buttonRetry">
131 </paper-button> 125 </paper-button>
132 </div> 126 </div>
133 </div> 127 </div>
134 </div> 128 </div>
135 </body> 129 </body>
136 </html> 130 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/arc_support/main.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698