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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/origin_trials/webexposed/foreignfetch-origin-trial-interfaces.html

Issue 2673953003: Allow origin trials to be enabled by script (Closed)
Patch Set: Created 3 years, 10 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/origin_trials/webexposed/foreignfetch-origin-trial-interfaces.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/origin_trials/webexposed/foreignfetch-origin-trial-interfaces.html b/third_party/WebKit/LayoutTests/http/tests/origin_trials/webexposed/foreignfetch-origin-trial-interfaces.html
new file mode 100644
index 0000000000000000000000000000000000000000..99d160f75607e96bc63d38b63ff240d2bde7cc2c
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/origin_trials/webexposed/foreignfetch-origin-trial-interfaces.html
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<!-- Generate token with the command:
+generate_token.py http://127.0.0.1:8000 ForeignFetch --expire-timestamp=2000000000
+-->
+<meta http-equiv="origin-trial" content="AinuK1QNcHGJANXfN0Pzkvpxm8rocd4kcqQqhp7rBN8PEX/1JicCoDXX3fIhk7iwBOCCOQYR0cvZ8XHTLJJfVw0AAABUeyJvcmlnaW4iOiAiaHR0cDovLzEyNy4wLjAuMTo4MDAwIiwgImZlYXR1cmUiOiAiRm9yZWlnbkZldGNoIiwgImV4cGlyeSI6IDIwMDAwMDAwMDB9" />
+<title>ForeignFetch - interfaces exposed by origin trial</title>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<script src="../../resources/origin-trials-helper.js"></script>
+<script src="../../serviceworker/resources/test-helpers.js"></script>
+<script>
+promise_test(t => {
+ var script =
+ './resources/foreignfetch-origin-trial-interfaces-worker.php';
+ var scope =
+ './resources/foreignfetch-origin-trial-interfaces-scope-disabled';
+ return OriginTrialsHelper.check_interfaces_in_sw(t, script, scope)
+ .then(message => {
+ console.log('Interfaces in Service Worker - no origin trial\n' + message);
+ });
+ }, "ForeignFetch related interfaces in SW - no origin trial.");
+
+promise_test(t => {
+ var script =
+ './resources/foreignfetch-origin-trial-interfaces-worker.php?' +
+ 'origintrial=true';
+ var scope =
+ './resources/foreignfetch-origin-trial-interfaces-scope-enabled';
+ return OriginTrialsHelper.check_interfaces_in_sw(t, script, scope)
+ .then(message => {
+ console.log('Interfaces in Service Worker - origin trial enabled.\n' +
+ message);
+ });
+ }, "ForeignFetch related interfaces in SW - origin trial enabled.");
+
+</script>

Powered by Google App Engine
This is Rietveld 408576698