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

Side by Side Diff: chrome/browser/resources/policy.html

Issue 668983004: Add <a is="action-link">, a web component extension of <a> for in-page actions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 years, 1 month 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 i18n-values="dir:textdirection"> 2 <html i18n-values="dir:textdirection">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, user-scalable=no"> 5 <meta name="viewport" content="width=device-width, user-scalable=no">
6 <title i18n-content="title"></title> 6 <title i18n-content="title"></title>
7 7
8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
9 <link rel="stylesheet" href="uber/uber_shared.css"> 9 <link rel="stylesheet" href="uber/uber_shared.css">
10 <link rel="stylesheet" href="chrome://policy/policy.css"> 10 <link rel="stylesheet" href="chrome://policy/policy.css">
11 11
12 <script src="chrome://resources/js/action_link.js"></script>
12 <script src="chrome://resources/js/cr.js"></script> 13 <script src="chrome://resources/js/cr.js"></script>
13 <script src="chrome://resources/js/cr/ui.js"></script> 14 <script src="chrome://resources/js/cr/ui.js"></script>
14 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> 15 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
15 <script src="chrome://resources/js/load_time_data.js"></script> 16 <script src="chrome://resources/js/load_time_data.js"></script>
16 <script src="chrome://resources/js/util.js"></script> 17 <script src="chrome://resources/js/util.js"></script>
17 <script src="chrome://policy/uber_utils.js"></script> 18 <script src="chrome://policy/uber_utils.js"></script>
18 </head> 19 </head>
19 20
20 <body class="uber-frame" 21 <body class="uber-frame"
21 i18n-values=".style.fontFamily:fontfamily; .style.fontSize:fontsize"> 22 i18n-values=".style.fontFamily:fontfamily; .style.fontSize:fontsize">
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 </td> 87 </td>
87 <td class="level-column"> 88 <td class="level-column">
88 <div class="level elide"></div> 89 <div class="level elide"></div>
89 </td> 90 </td>
90 <td class="name-column"> 91 <td class="name-column">
91 <div class="name elide"></div> 92 <div class="name elide"></div>
92 </td> 93 </td>
93 <td class="value-column"> 94 <td class="value-column">
94 <div class="value-container"> 95 <div class="value-container">
95 <span class="value"></span> 96 <span class="value"></span>
96 <button class="toggle-expanded-value link-button"></button> 97 <a is="action-link" class="toggle-expanded-value"></a>
97 </div> 98 </div>
98 </td> 99 </td>
99 <td class="status-column"> 100 <td class="status-column">
100 <div class="status elide"></div> 101 <div class="status elide"></div>
101 </td> 102 </td>
102 </tr> 103 </tr>
103 <tr class="expanded-value-container"> 104 <tr class="expanded-value-container">
104 <td class="expanded-value" colspan=5></td> 105 <td class="expanded-value" colspan=5></td>
105 </tr> 106 </tr>
106 </tbody> 107 </tbody>
107 </table> 108 </table>
108 </div> 109 </div>
109 </body> 110 </body>
110 111
111 <script src="chrome://policy/strings.js"></script> 112 <script src="chrome://policy/strings.js"></script>
112 <script src="chrome://resources/js/i18n_template2.js"></script> 113 <script src="chrome://resources/js/i18n_template2.js"></script>
113 <script src="chrome://policy/policy.js"></script> 114 <script src="chrome://policy/policy.js"></script>
114 </html> 115 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/sync_section.html ('k') | chrome/browser/resources/print_preview/print_preview.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698