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

Unified Diff: chrome/browser/resources/print_preview.html

Issue 3516010: Initial Print Preview UI. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: more renaming Created 10 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/print_preview.html
===================================================================
--- chrome/browser/resources/print_preview.html (revision 0)
+++ chrome/browser/resources/print_preview.html (revision 0)
@@ -0,0 +1,49 @@
+<!DOCTYPE HTML>
+<html i18n-values="dir:textdirection;" id="t">
arv (Not doing code reviews) 2010/10/06 21:53:10 You can remove the id here
+<head>
+<meta charset="utf-8">
+<title i18n-content="title"></title>
+
+<link rel="stylesheet" href="dom_ui.css">
+<link rel="stylesheet" href="print_preview.css">
+
+<script src="chrome://resources/js/local_strings.js"></script>
+<script src="chrome://resources/js/util.js"></script>
+
+</head>
+<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
+<div id="main-content">
arv (Not doing code reviews) 2010/10/06 21:53:10 Any reason why you need this div?
+ <div id="navbar-container">
+ <div id="destination-container">
+ <div id="destination-title">
arv (Not doing code reviews) 2010/10/06 21:53:10 Looks like a<hx> tag would be more suitable
+ Destination
+ </div>
+ <div id="destination-list">
+ LIST GOES HERE
+ </div>
+ <div id="print-buttons">
+ <button id="printButton">Print</button>
+ <button id="cancelButton">Cancel</button>
+ </div>
+ </div>
+ <div id="options-container">
+ OPTIONS HERE
+ </div>
+ </div>
+ <div id="mainview">
+ <div id="mainview-content">
arv (Not doing code reviews) 2010/10/06 21:53:10 I think you can remove all the *-content divs.
+ MAIN
+ </div>
+ </div>
+ <div id="thumbnails">
+ <div id="thumbnails-content">
+ THUMBNAILS
+ </div>
+ </div>
+</div>
+
+<script>
+console.log('in bottom script');
+</script>
+</body>
+</html>
Property changes on: chrome/browser/resources/print_preview.html
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698