Commit cd659ee5 authored by mhm@chromium.org's avatar mhm@chromium.org

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
parent 48c7af7c
...@@ -33,6 +33,9 @@ without changes to the corresponding grd file. --> ...@@ -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_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_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_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'"> <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_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" /> <include name="IDR_LINUX_SPLASH_HTML_CHROME" file="resources\linux-splash-chrome.html" flattenhtml="true" type="BINDATA" />
......
/* Initial page for print tab css */
<!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>
/* Initial page for print tab js */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment