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

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

Issue 11359020: Print headers and footers with WebKit. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/renderer/print_web_view_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/print_preview/print_preview_page.html
diff --git a/chrome/browser/resources/print_preview/print_preview_page.html b/chrome/browser/resources/print_preview/print_preview_page.html
new file mode 100644
index 0000000000000000000000000000000000000000..415ab3760c857a71775ead044c436e90437ffb22
--- /dev/null
+++ b/chrome/browser/resources/print_preview/print_preview_page.html
@@ -0,0 +1,115 @@
+<!DOCTYPE html>
+<head>
+<style>
+ body {
+ margin: 0px;
+ width: 0px;
+ }
+ .row {
+ display: table-row;
+ vertical-align: inherit;
+ }
+ #header, #footer {
+ display: table;
+ table-layout:fixed;
+ width: inherit;
+ }
+ #header {
+ vertical-align: top;
+ }
+ #footer {
+ vertical-align: bottom;
+ }
+ .text {
+ display: table-cell;
+ font-family: Sans;
+ font-size: 8px;
+ vertical-align: inherit;
+ white-space: nowrap;
+ }
+ #page_number {
+ text-align: right;
+ }
+ #title {
+ text-align: center;
+ }
+ #date, #url {
+ padding-left: 0.7cm;
+ padding-right: 0.1cm;
+ }
+ #title, #page_number {
+ padding-left: 0.1cm;
+ padding-right: 0.7cm;
+ }
+ #title, #url {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ }
+ #title, #date {
+ padding-bottom: 0cm;
+ padding-top: 0.4cm;
+ }
+ #page_number, #url {
+ padding-bottom: 0.4cm;
+ padding-top: 0cm;
+ }
+</style>
+<script>
+
+function pixels(value) {
+ return value + 'px';
+}
+
+function setup(options) {
+ var body = document.querySelector('body');
+ var header = document.querySelector('#header');
+ var content = document.querySelector('#content');
+ var footer = document.querySelector('#footer');
+
+ body.style.width = pixels(options['width']);
+ body.style.height = pixels(options['height']);
+ header.style.height = pixels(options['topMargin']);
+ content.style.height = pixels(options['height'] - options['topMargin'] -
+ options['bottomMargin']);
+ footer.style.height = pixels(options['bottomMargin']);
+
+ document.querySelector('#date span').innerText = options['date'];
+ document.querySelector('#title span').innerText = options['title'];
+ document.querySelector('#url span').innerText = options['url'];
+ document.querySelector('#page_number span').innerText = options['pageNumber'];
+
+ // Reduce date and page number space to give more space to title and url.
+ document.querySelector('#date').style.width =
+ pixels(document.querySelector('#date span').offsetWidth);
+ document.querySelector('#page_number').style.width =
+ pixels(document.querySelector('#page_number span').offsetWidth);
+
+ // Hide text if it doesn't fit into expected margins.
+ if (header.offsetHeight > options['topMargin'] + 1) {
+ header.style.display = 'none';
+ content.style.height = pixels(options['height'] - options['bottomMargin']);
+ }
+ if (footer.offsetHeight > options['bottomMargin'] + 1) {
+ footer.style.display = 'none';
+ }
+}
+
+</script>
+</head>
+<body>
+ <div id="header">
+ <div class="row">
+ <div id="date" class="text"><span/></div>
+ <div id="title" class="text"><span/></div>
+ </div>
+ </div>
+ <div id="content">
+ </div>
+ <div id="footer">
+ <div class="row">
+ <div id="url" class="text"><span/></div>
+ <div id="page_number" class="text"><span/></div>
+ </div>
+ </div>
+</body>
+</html>
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/renderer/print_web_view_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698