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

Side by Side Diff: components/physical_web/webui/resources/physical_web.html

Issue 2248913007: Add a Physical Web WebUI (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
OLDNEW
(Empty)
1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language">
3 <head>
4 <meta charset="utf-8">
5 <title i18n-content="title"></title>
6 <if expr="is_android or is_ios">
7 <meta name="viewport" content="width=device-width, user-scalable=no">
8 </if>
9 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
10 <link rel="stylesheet" href="chrome://physical-web/physical_web.css">
11
12 <if expr="is_ios">
13 <!-- TODO(crbug.com/487000): Remove this once injected by web. -->
14 <script src="chrome://resources/js/ios/web_ui.js"></script>
15 </if>
16
17 <script src="chrome://resources/js/load_time_data.js"></script>
18 <script src="chrome://resources/js/util.js"></script>
19 <script src="chrome://physical-web/physical_web.js"></script>
20 <script src="chrome://physical-web/strings.js"></script>
21 </head>
22 <body>
23 <div id="body-container" style="visibility:visible">
24
25 <h1 i18n-content="title"></h1>
26
27 <a class="physicalWebTemplate" id="physicalWebTemplate" jsvalues="href:resolve dUrl" jsselect="metadata">
28 <div class="physicalWebIcon">
29 <img jsvalues="src:icon" />
Jackie Quinn 2016/08/30 22:37:24 I'm not familiar with jsvalues as an attribute...
mattreynolds 2016/08/30 23:33:23 Yeah, it works fine for me on iOS.
30 </div>
31 <div class="physicalWebText">
32 <div class="title" jscontent="title"></div>
33 <div class="resolvedUrl" jscontent="resolvedUrl"></div>
34 <div class="description" jscontent="description"></div>
35 </div>
36 </a>
37
38 </div>
39
40 <script src="chrome://resources/js/i18n_template.js"></script>
41 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
42 </body>
43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698