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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/secure-contexts/basic-popup-and-iframe-tests.html

Issue 1999243002: Import wpt@5df9b57edb3307a87d5187804b29c8ddd2aa14e1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add expectations files (using run-webkit-tests --new-baseline) Created 4 years, 7 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
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <meta charset=utf-8>
5 <title>Test Window.isSecureContext for HTTP creator</title>
6 <meta name="help" href="https://w3c.github.io/webappsec-secure-contexts/#mon key-patching-global-object">
7 <meta name="author" title="Jonathan Watt" href="https://jwatt.org/">
8 <script src=../../../resources/testharness.js></script>
9 <script src=../../../resources/testharnessreport.js></script>
10 <script src="server-locations.sub.js"></script>
11 <script>
12
13 // This file is the equivasent of the https version, but rather than
14 // having a copy of its script file we figure out the URI of the script on the
15 // https server and load it here.
16 let script = document.createElement("script");
17 script.setAttribute("src", https_dir + "basic-popup-and-iframe-tests.https.js");
18 document.head.appendChild(script);
19
20 </script>
21 </head>
22 <body onload="begin();">
23 </body>
24 </html>
25
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698