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

Side by Side Diff: tools/perf/page_sets/indexeddb_perf/endure/app.html

Issue 1238393003: [IndexedDB] Adding traces, perf tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 5 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <title>IndexedDB Offline</title> 2 <title>IndexedDB Offline</title>
3 <p>This test models the typical design of an offline-aware authoring 3 <p>This test models the typical design of an offline-aware authoring
4 application: 4 application:
5 <ul> 5 <ul>
6 <li>When "offline", a series of (fake) user events are logged into a 6 <li>When "offline", a series of (fake) user events are logged into a
7 store 7 store
8 <li>When "online", the events are played back to a (fake) server, 8 <li>When "online", the events are played back to a (fake) server,
cmumford 2015/08/03 17:31:34 So what's the plan for chrome/test/data/indexeddb/
dmurph 2015/08/05 15:30:33 Dunno. We could just remove it. I'm not sure what
9 draining the store 9 draining the store
10 <li>When "online" a Worker synchronizes data from a (fake) remote 10 <li>When "online" a Worker synchronizes data from a (fake) remote
11 source into a store in chunks, then consolidates it into another 11 source into a store in chunks, then consolidates it into another
12 store 12 store
13 </ul> 13 </ul>
14 14
15 <div id="status"></div> 15 <div id="status"></div>
16 16
17 <button disabled="true" id="offline">Go Offline</button> 17 <button disabled="true" id="offline">Go Offline</button>
18 <button disabled="true" id="online">Go Online</button> 18 <button disabled="true" id="online">Go Online</button>
19 <div id="state"></div> 19 <div id="state"></div>
20 20
21 <script src="app.js?cachebust"></script> 21 <script src="app.js?cachebust"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698