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

Side by Side Diff: LayoutTests/storage/indexeddb/pending-version-change-stuck-works-with-terminate.html

Issue 1317593005: Indexed DB: Remove vendor prefix removal from tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../resources/js-test.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 <script src="resources/shared.js"></script> 4 <script src="resources/shared.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <script> 7 <script>
8 8
9 description("Explicitly terminating worker with blocked call should allow later open calls to proceed"); 9 description("Explicitly terminating worker with blocked call should allow later open calls to proceed");
10 10
11 function test() 11 function test()
12 { 12 {
13 removeVendorPrefixes();
14 setDBNameFromPath(); 13 setDBNameFromPath();
15 if (self.location.search !== "?second") { 14 if (self.location.search !== "?second") {
16 firstOpen(); 15 firstOpen();
17 } else { 16 } else {
18 secondOpen(); 17 secondOpen();
19 } 18 }
20 } 19 }
21 20
22 function firstOpen() { 21 function firstOpen() {
23 request = evalAndLog("indexedDB.deleteDatabase(dbname)"); 22 request = evalAndLog("indexedDB.deleteDatabase(dbname)");
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 58
60 originalOnMessage(event); 59 originalOnMessage(event);
61 }; 60 };
62 } 61 }
63 62
64 test(); 63 test();
65 64
66 </script> 65 </script>
67 </body> 66 </body>
68 </html> 67 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698