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

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

Issue 811563008: Moving files from //chrome to //components/printing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix deps, owners, readme Created 5 years, 11 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/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
deleted file mode 100644
index 4ea37f52c45d5a4f135282c07b4098b8d2e0efa0..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/print_preview/print_preview_page.html
+++ /dev/null
@@ -1,117 +0,0 @@
-<!doctype html>
-<head>
-<link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
-<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-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 =
- new Date(options['date']).toLocaleDateString();
- 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>

Powered by Google App Engine
This is Rietveld 408576698