blob: 02e7b3cd8c00b70dfc14cde57a2e045e58153f77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE HTML>
<html manifest="../resources/manifest/clock.manifest">
<head>
<title>Offline Application Cache - API_swapCache_error</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<script>
var cache = window.applicationCache;
test(function() {
assert_throws("INVALID_STATE_ERR", function(){cache.swapCache();});
}, "INVALID_STATE_ERR error test")
</script>
</body>
</html>
|