diff options
author | mhm@chromium.org <mhm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-03 22:14:29 +0000 |
---|---|---|
committer | mhm@chromium.org <mhm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-03 22:14:29 +0000 |
commit | cd659ee5e9e02a3fdf261fb9ebdf25801661b5fa (patch) | |
tree | d8c01fce02385f63f927808aa84bf2f40aa4c6a7 /chrome/browser | |
parent | 48c7af7c5620fc2d02660f1c24dd85c0e87a0b14 (diff) | |
download | chromium_src-cd659ee5e9e02a3fdf261fb9ebdf25801661b5fa.zip chromium_src-cd659ee5e9e02a3fdf261fb9ebdf25801661b5fa.tar.gz chromium_src-cd659ee5e9e02a3fdf261fb9ebdf25801661b5fa.tar.bz2 |
Initial html page views for print preview and setup
This is still the foundation, has no implementation, just plain old html and its structure.
BUG=173, 947
TEST=none
Review URL: http://codereview.chromium.org/155051
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19918 0039d316-1c4b-4281-b951-d872f2087c98
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 */ + |