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

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

Issue 7003007: Apply content-security-policy to the HTML options page. This is a (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <!-- 3 <!--
4 Copyright (c) 2010 The Chromium Authors. All rights reserved. 4 Copyright (c) 2010 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 <head i18n-values="dir:textdirection;"> 8 <head i18n-values="dir:textdirection;">
9 <link rel="stylesheet" href="webui.css"> 9 <link rel="stylesheet" href="chrome://resources/css/webui.css">
10 <style> 10 <style>
11 * { 11 * {
12 box-sizing: border-box; 12 box-sizing: border-box;
13 } 13 }
14 14
15 html, body, #main-tabs { 15 html, body, #main-tabs {
16 height: 100%; 16 height: 100%;
17 } 17 }
18 18
19 body { 19 body {
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 <body> 106 <body>
107 <div id="debug-div"> 107 <div id="debug-div">
108 </div> 108 </div>
109 <!-- Tabs --> 109 <!-- Tabs -->
110 <div id="main-tabs"> 110 <div id="main-tabs">
111 <include src="gpu_internals/info_view.html"> 111 <include src="gpu_internals/info_view.html">
112 <div id="profiling-view" label="Profiling"></div> 112 <div id="profiling-view" label="Profiling"></div>
113 </div> 113 </div>
114 </body> 114 </body>
115 </html> 115 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698