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

Unified Diff: LayoutTests/http/tests/security/resources/cross-origin-iframe-for-worker-websql.html

Issue 561093003: Remove worker support of Web SQL Database. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/security/resources/cross-origin-iframe-for-worker-websql.html
diff --git a/LayoutTests/http/tests/security/resources/cross-origin-iframe-for-worker-websql.html b/LayoutTests/http/tests/security/resources/cross-origin-iframe-for-worker-websql.html
deleted file mode 100644
index e15244d7021a8868817deee7e1b44fae7637c033..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/security/resources/cross-origin-iframe-for-worker-websql.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-<head>
-<script>
-window.onload = function() {
- var worker = new Worker('worker-for-websql.js');
- worker.postMessage(true);
- worker.onmessage = function(event) {
- if (event.data) {
- window.parent.postMessage(event.data, '*');
- document.write(event.data);
- } else {
- window.parent.postMessage('No exception', '*');
- document.write('No exception');
- }
- };
-}
-</script>
-</head>
-<body>
-</body>
-</head>

Powered by Google App Engine
This is Rietveld 408576698