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

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

Issue 10386134: Record API fix adding FirstRun, and allowing repeat-count in capture (plus some browsertests along … (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Retrying due to patch failure Created 8 years, 6 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
index eb328583217abf803dfefce02dc2fe574b2485eb..e394328d763736312c9f004a45fd7b7ba5e7ad95 100644
--- 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
@@ -23,8 +23,8 @@ found in the LICENSE file. -->
<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
+ <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">
@@ -40,6 +40,10 @@ found in the LICENSE file. -->
<span class="control-label">Cache directory:</span><br/>
<input id="capture-cache-dir" type="text" class="dir-choice"/>
</div>
+ <div class="entry-field">
+ <span class="control-label">Repeat count: </span>
+ <input id="capture-repeat-count" type="text" value="1"/>
+ </div>
<div class="command-button">
<button id="capture-test">
@@ -64,12 +68,12 @@ found in the LICENSE file. -->
<span id="replay-cache-dir"></span>
</div>
<div class="entry-field">
- <span class="control-label">Extension directory: </span>
- <input id="extension-dir" type="text" class="dir-choice"/>
+ <span class="control-label">Repeat count: </span>
+ <span id="replay-repeat-count"></span>
</div>
<div class="entry-field">
- <span class="control-label">Repeat count: </span>
- <input id="repeat-count" type="text" value="1"/>
+ <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>

Powered by Google App Engine
This is Rietveld 408576698