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

Unified Diff: components/dom_distiller/webui/resources/about_dom_distiller.html

Issue 105623002: Debug UI for DOM distiller supports distillation and lists articles. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix strings and dependencies for ios Created 7 years 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/webui/resources/about_dom_distiller.html
diff --git a/components/dom_distiller/webui/resources/about_dom_distiller.html b/components/dom_distiller/webui/resources/about_dom_distiller.html
index 56740366bcfde932a5ca3f4159dfdf8027a6790b..474868e7afd3213c7528ec46b1190b59bfd78dfa 100644
--- a/components/dom_distiller/webui/resources/about_dom_distiller.html
+++ b/components/dom_distiller/webui/resources/about_dom_distiller.html
@@ -1,4 +1,9 @@
<!DOCTYPE HTML>
+<!--
+Copyright 2013 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
<html>
<head>
<meta charset="utf-8">
@@ -18,11 +23,29 @@
<script src="strings.js"></script>
</head>
<body>
- <header>
- <h1 i18n-content="domDistillerTitle"></h1>
- </header>
- <div id="entries-section">
- <div id="entries-list"></div>
+ <div id="mainContent">
+ <div id="list-section">
+ <header>
+ <h1 id="listTitle" i18n-content="domDistillerTitle"></h1>
+ </header>
+ <div id="add-entry">
+ <form>
+ <label for="article_url" i18n-content="addArticleUrl"></label>
+ <input type="text" id="article_url" />
+ <br/>
+ <button id="addbutton" i18n-content="addArticleAddButtonLabel"></button>
+ </form>
+ <span id="add-entry-error" i18n-content="addArticleFailedLabel"></span>
+ </div>
+ <div id="update-list">
+ <form>
+ <button id="refreshbutton" i18n-content="refreshButtonLabel"></button>
+ <span id="entries-list-loading" i18n-content="loadingEntries"></span>
+ </form>
+ </div>
+ <ul id="entries-list">
+ </ul>
+ </div>
</div>
<script src="chrome://resources/js/i18n_template2.js"></script>
<script src="chrome://resources/js/jstemplate_compiled.js"></script>

Powered by Google App Engine
This is Rietveld 408576698