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

Side by Side Diff: third_party/WebKit/LayoutTests/storage/indexeddb/observer-workers.html

Issue 2449563002: [IndexedDB] Add Observer Tests (Closed)
Patch Set: Fixed errors in other tests, and marked observer tests as long Created 4 years, 1 month 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
(Empty)
1 <html>
2 <title>IndexedDB: Observer Constructor Tests</title>
3 <meta name=timeout content=long>
4 <script src="../../resources/testharness.js"></script>
5 <script src="../../resources/testharnessreport.js"></script>
6 <script>
7
8 var worker = new Worker('resources/observer-tests.js');
9 worker.addEventListener('message', function(event) {
10 if (event.data.hasOwnProperty('start_worker_url')) {
11 new Worker(event.data.start_worker_url);
12 }
13 });
14 fetch_tests_from_worker(worker);
15
16 </script>
17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698