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

Side by Side Diff: LayoutTests/http/tests/appcache/resources/obsolete-error-events-frame.html

Issue 217133002: AppCache error details tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Restore missing files Created 6 years, 8 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
(Empty)
1 <html manifest="fail-on-update.php">
2 <script>
3
4 applicationCache.addEventListener('obsolete', function(e) {
5 window.parent.postMessage({
6 type: e.type
7 }, '*');
8 });
9
10 applicationCache.addEventListener('error', function(e) {
11 window.parent.postMessage({
12 type: e.type,
13 reason: e.reason,
14 url: e.url,
15 status: e.status
16 }, '*');
17 });
18 </script>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698