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

Unified Diff: chrome/common/extensions/docs/examples/api/record/page_cycler/page_cycler.html

Issue 21854002: Remove experimental.record api completely (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch Created 7 years, 4 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/common/extensions/docs/examples/api/record/page_cycler/page_cycler.html
diff --git a/chrome/common/extensions/docs/examples/api/record/page_cycler/page_cycler.html b/chrome/common/extensions/docs/examples/api/record/page_cycler/page_cycler.html
deleted file mode 100644
index 6e2131adfc462cf2648cc980b44303a69be0bb02..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/docs/examples/api/record/page_cycler/page_cycler.html
+++ /dev/null
@@ -1,90 +0,0 @@
-<!doctype html>
-
-<!-- Copyright (c) 2012 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>
-<title>Page Cycler</title>
-<link rel="stylesheet" type="text/css" href="page_cycler.css"/>
-</head>
-<body>
-
-<div id="page">
- <div id="tab-navigator">
- <div class="tab-label" id="capture-tab-label"><a>Prepare Test</a></div>
- <div class="tab-label" id="replay-tab-label"><a>Run Test</a></div>
- </div>
-
- <div class="splitter"></div>
-
- <div id="tab-wrapper">
- <div id="capture-tab" class="tab">
- <h1>Set Up Page Cycling Test</h1>
- <p>
- <b>Set up the list of URLs, and a cache directory. "Prepare Test" will
- do a preliminary visit of all the URLs, caching them in the indicated
- directory.</b>
- </p>
- <div id="capture-errors-display" class="error-list-hide">
- <h2>Errors Occured during Capture:</h2>
- <p id="capture-errors"></p>
- </div>
- <div>
- <p class="control-label">List of URLs to cycle</p>
- <textarea id="capture-urls" class="url-list">&lt;Add URLS&gt;
- </textarea>
- </div>
- <div class="entry-field">
- <span class="control-label">Cache directory:</span><br/>
- <input id="capture-cache-dir" type="text" class="dir-choice"/>
- </div>
-
- <div class="command-button">
- <button id="capture-test">
- Prepare Test
- </button>
- </div>
-
- </div>
-
- <div id="replay-tab" class="tab">
- <h1>Replay Prepared Test</h1>
- <div id="replay-errors-display" class="error-list-hide">
- <h2>Errors Occured during Replay:</h2>
- <p id="replay-errors"></p>
- </div>
- <div>
- <p class="control-label">List of URLs to replay</p>
- <p id="replay-urls" class="url-list"></p>
- </div>
- <div class="entry-field">
- <span class="control-label">Cache directory: </span>
- <span id="replay-cache-dir"></span>
- </div>
- <div class="entry-field">
- <span class="control-label">Repeat count: </span>
- <input id="repeat-count" type="text" value="1"/>
- </div>
- <div class="entry-field">
- <span class="control-label">Extension directory: </span>
- <input id="extension-dir" type="text" class="dir-choice"/>
- </div>
- <div>
- <p class="control-label">Result of Replay</p>
- <textarea id="replay-result" class="url-list">
- </textarea>
- </div>
- <div class="command-button">
- <button id="replay-test" disabled=true>
- Replay Test
- </button>
- </div>
- </div>
- </div>
-</div>
-
-<script type="text/javascript" src="page_cycler.js"></script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698