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

Unified Diff: components/dom_distiller/content/resources/dom_distiller_viewer.html

Issue 134873008: Add support for displaying distilled articles. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added browser test for looking up articles, and fixed rebase of MIME-type Created 6 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: components/dom_distiller/content/resources/dom_distiller_viewer.html
diff --git a/components/dom_distiller/content/resources/dom_distiller_viewer.html b/components/dom_distiller/content/resources/dom_distiller_viewer.html
new file mode 100644
index 0000000000000000000000000000000000000000..5cd88fa5fed08557b4cf36025cd240c17b429948
--- /dev/null
+++ b/components/dom_distiller/content/resources/dom_distiller_viewer.html
@@ -0,0 +1,24 @@
+<!DOCTYPE HTML>
+<!--
+Copyright 2014 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+ound in the LICENSE file.
cjhopman 2014/01/28 02:56:56 s/ound/found/
nyquist 2014/01/28 18:16:12 Done.
+-->
+<html>
+<head>
+ <meta charset="utf-8">
+ <title>$1</title>
+</head>
+<body>
+ <div id="mainContent">
+ <div id="article">
+ <article>
+ <header>
+ <h1>$2</h1>
+ </header>
+ <div id="content">$3</div>
+ </article>
+ </div>
+ </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698