Chromium Code Reviews| 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 |