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

Side by Side Diff: chrome/browser/resources/chromeos/salsa.html

Issue 786933007: Make chrome://salsa more like other WebUI code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Salsa</title> 5 <title>Salsa</title>
6 <link rel="stylesheet" href="salsa.css"> 6 <link rel="stylesheet" href="salsa.css">
7 <script src="salsa.js"></script> 7 <script src="salsa.js"></script>
8 </head> 8 </head>
9 9
10 <body> 10 <body>
11 <div id="bounding-box"> 11 <div id="bounding-box">
12 <h1 class="title">Salsa</h1> 12 <h1 class="title">Salsa</h1>
13 13
14 <div id="invalid_treatment_info" hidden> 14 <div id="invalid-treatment-info" hidden>
Dan Beam 2014/12/10 19:19:47 - over _ in IDs
15 I'm afraid there has been some problem determining which treatments to use 15 I'm afraid there has been some problem determining which treatments to use
16 for your experiment. Please try to copy/paste the URL again and refresh 16 for your experiment. Please try to copy/paste the URL again and refresh
17 this page. If the problem persists please contact the person running the 17 this page. If the problem persists please contact the person running the
18 experiment. 18 experiment.
19 </div> 19 </div>
20 20
21 <div id="valid_treatment_info"> 21 <div id="valid-treatment-info">
22 <div id="treatment-list"> 22 <div id="treatment-list">
23 <div id="treatment-header">Available Treatments:</div> 23 <div id="treatment-header">Available Treatments:</div>
24 <div id="treatment-template" class="treatment" hidden></div> 24 <div id="treatment-template" class="treatment" hidden></div>
25 </div> 25 </div>
26 26
27 <p class='bold'>Instructions</p> 27 <p>Instructions</p>
Dan Beam 2014/12/10 19:19:47 no reason for single quotes (') or class="bold"
28 28
29 <ul id="instructions"> 29 <ul id="instructions">
30 <li> <span class='bold'>Click</span> or use your <span class='bold'>arrow 30 <li> <span>Click</span> or use your <span>arrow keys</span> to change the
31 keys</span> to change the selected treatment. 31 selected treatment.
32 32
33 <li> Treatments are ordered randomly, so there is no special significance 33 <li> Treatments are ordered randomly, so there is no special significance
34 to their labels. 34 to their labels.
35 35
36 <li> When you navigate away from this page your settings will be returned 36 <li> When you navigate away from this page your settings will be returned
37 to normal. If the browser crashes, and/or you experience unusual behavior 37 to normal. If the browser crashes, and/or you experience unusual behavior
38 after this experiment, you can manually reset your settings to their 38 after this experiment, you can manually reset your settings to their
39 default values at <a href="chrome://gesture">http://gesture</a>. 39 default values at <a href="chrome://gesture">chrome://gesture</a>.
Dan Beam 2014/12/10 19:19:47 this is supposed to be chrome://gesture, right? (i
40 </ul> 40 </ul>
41 41
42 <p class='bold'>Thank you for your participation!</p> 42 <p>Thank you for your participation!</p>
43 </div> 43 </div>
44 </div> 44 </div>
45 45
46 </body> 46 </body>
47 </html> 47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698