diff options
Diffstat (limited to 'chrome/browser/resources')
-rw-r--r-- | chrome/browser/resources/print_tab.css | 2 | ||||
-rw-r--r-- | chrome/browser/resources/print_tab.html | 19 | ||||
-rw-r--r-- | chrome/browser/resources/print_tab.js | 2 |
3 files changed, 23 insertions, 0 deletions
diff --git a/chrome/browser/resources/print_tab.css b/chrome/browser/resources/print_tab.css new file mode 100644 index 0000000..90dd24b --- /dev/null +++ b/chrome/browser/resources/print_tab.css @@ -0,0 +1,2 @@ +/* Initial page for print tab css */ + diff --git a/chrome/browser/resources/print_tab.html b/chrome/browser/resources/print_tab.html new file mode 100644 index 0000000..bb8c38e --- /dev/null +++ b/chrome/browser/resources/print_tab.html @@ -0,0 +1,19 @@ +<!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> + diff --git a/chrome/browser/resources/print_tab.js b/chrome/browser/resources/print_tab.js new file mode 100644 index 0000000..d65d22c --- /dev/null +++ b/chrome/browser/resources/print_tab.js @@ -0,0 +1,2 @@ +/* Initial page for print tab js */ + |