diff options
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/browser_resources.grd | 3 | ||||
-rw-r--r-- | chrome/browser/resources/print_tab.css | 2 | ||||
-rw-r--r-- | chrome/browser/resources/print_tab.html | 19 | ||||
-rw-r--r-- | chrome/browser/resources/print_tab.js | 2 |
4 files changed, 26 insertions, 0 deletions
diff --git a/chrome/browser/browser_resources.grd b/chrome/browser/browser_resources.grd index a43bc82..a8b8fa7 100644 --- a/chrome/browser/browser_resources.grd +++ b/chrome/browser/browser_resources.grd @@ -33,6 +33,9 @@ without changes to the corresponding grd file. --> <include name="IDR_DOM_UI_CSS" file="resources\dom_ui.css" flattenhtml="true" type="BINDATA" /> <include name="IDR_EXTENSIONS_UI_HTML" file="resources\extensions_ui.html" flattenhtml="true" type="BINDATA" /> <include name="IDR_EXTENSIONS_TOOLSTRIP_CSS" file="resources\extensions_toolstrip.css" flattenhtml="true" type="BINDATA" /> + <include name="IDR_PRINT_TAB_HTML" file="resources\print_tab.html" flattenhtml="true" type="BINDATA" /> + <include name="IDR_PRINT_TAB_CSS" file="resources\print_tab.css" type="BINDATA" /> + <include name="IDR_PRINT_TAB_JS" file="resources\print_tab.js" type="BINDATA" /> <if expr="os == 'linux2'"> <include name="IDR_LINUX_SPLASH_HTML_CHROMIUM" file="resources\linux-splash.html" flattenhtml="true" type="BINDATA" /> <include name="IDR_LINUX_SPLASH_HTML_CHROME" file="resources\linux-splash-chrome.html" flattenhtml="true" type="BINDATA" /> diff --git a/chrome/browser/resources/print_tab.css b/chrome/browser/resources/print_tab.css new file mode 100644 index 0000000..90dd24b --- /dev/null +++ b/chrome/browser/resources/print_tab.css @@ -0,0 +1,2 @@ +/* Initial page for print tab css */ + diff --git a/chrome/browser/resources/print_tab.html b/chrome/browser/resources/print_tab.html new file mode 100644 index 0000000..bb8c38e --- /dev/null +++ b/chrome/browser/resources/print_tab.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html id="t" > + <head> + <meta charset="utf-8"> + <title>Print Page</title> + <link rel="stylesheet" href="print_tab.css"> + </head> + <body> + <center> + <h1>Chromium Print Page</h1> + </center> + <div class="text"> + <p>This is an <i>in-progress</i> print preview and settings page + in chromium.</p> + </div> + </body> + <script src="print_tab.js"></script> +</html> + diff --git a/chrome/browser/resources/print_tab.js b/chrome/browser/resources/print_tab.js new file mode 100644 index 0000000..d65d22c --- /dev/null +++ b/chrome/browser/resources/print_tab.js @@ -0,0 +1,2 @@ +/* Initial page for print tab js */ + |