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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/permissions/chromium/test-request-multiple-sharedworker.html

Issue 1381023003: permissions: add layout tests for multiple requests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix subtle issues 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/permissions/chromium/test-request-multiple-sharedworker.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/permissions/chromium/test-request-sharedworker.html b/third_party/WebKit/LayoutTests/http/tests/permissions/chromium/test-request-multiple-sharedworker.html
similarity index 85%
copy from third_party/WebKit/LayoutTests/http/tests/permissions/chromium/test-request-sharedworker.html
copy to third_party/WebKit/LayoutTests/http/tests/permissions/chromium/test-request-multiple-sharedworker.html
index a36e2bbd27cc796bce0ddfd5915d9280f17cce6f..4349aacfce4f0c97f4b894ea4ffeb8c31d4263cd 100644
--- a/third_party/WebKit/LayoutTests/http/tests/permissions/chromium/test-request-sharedworker.html
+++ b/third_party/WebKit/LayoutTests/http/tests/permissions/chromium/test-request-multiple-sharedworker.html
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
- <title>Permissions API: test .request() method.</title>
+ <title>Permissions API: test .request([]) method (for multiple permissions).</title>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="../../serviceworker/resources/test-helpers.js"></script>
@@ -10,7 +10,7 @@
</head>
<body>
<script>
- var shared_worker = new SharedWorker('resources/test-request.js');
+ var shared_worker = new SharedWorker('resources/test-request-multiple.js');
shared_worker.port.addEventListener('message', window_message_handler);
shared_worker.port.start();
fetch_tests_from_worker(shared_worker);

Powered by Google App Engine
This is Rietveld 408576698