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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/idbversionchangeevent.htm

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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>IDBVersionChangeEvent fired in upgradeneeded, versionchange and deleteDat abase</title> 2 <title>IDBVersionChangeEvent fired in upgradeneeded, versionchange and deleteDat abase</title>
3 <link rel="author" href="mailto:odinho@opera.com" title="Odin Hørthe Omdal"> 3 <link rel="author" href="mailto:odinho@opera.com" title="Odin Hørthe Omdal">
4 <link rel=help href="http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html# versionchange--transaction-steps"> 4 <link rel=help href="http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html# versionchange--transaction-steps">
5 <link rel=assert title="Fire a versionchange event at each object in openDatabas es that is open. The event must not be fired on objects which has the closePendi ng flag set. The event must use the IDBVersionChangeEvent interface and have the oldVersion property set to db's version and have the newVersion property set to version."> 5 <link rel=assert title="Fire a versionchange event at each object in openDatabas es that is open. The event must not be fired on objects which has the closePendi ng flag set. The event must use the IDBVersionChangeEvent interface and have the oldVersion property set to db's version and have the newVersion property set to version.">
6 <link rel=assert title="Fire a upgradeneeded event targeted at request. The even t must use the IDBVersionChangeEvent interface and have the oldVersion property set to old version and have the newVersion property set to version."> 6 <link rel=assert title="Fire a upgradeneeded event targeted at request. The even t must use the IDBVersionChangeEvent interface and have the oldVersion property set to old version and have the newVersion property set to version.">
7 <script src="../../../resources/testharness.js"></script> 7 <script src="../../../resources/testharness.js"></script>
8 <script src="../../../resources/testharnessreport.js"></script> 8 <script src="../../../resources/testharnessreport.js"></script>
9 <script src="support.js"></script> 9 <script src="support.js"></script>
10 10
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 57
58 setTimeout(function() { t.done(); }, 10); 58 setTimeout(function() { t.done(); }, 10);
59 }); 59 });
60 60
61 // Errors 61 // Errors
62 deleterq.onerror = fail(t, "delete.error"); 62 deleterq.onerror = fail(t, "delete.error");
63 deleterq.onblocked = fail(t, "delete.blocked"); 63 deleterq.onblocked = fail(t, "delete.blocked");
64 } 64 }
65 65
66 </script> 66 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698