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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/fetch/referrer/test.html

Issue 1897783002: [DO NOT COMMIT] CallWith=ScriptState with iframe Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <script src = "/resources/testharness.js"></script>
4 <script src = "/resources/testharness-helpers.js"></script>
5 <script src = "/resources/testharnessreport.js"></script>
6 <body>
7 <script>
8
9 test(() => {
10 let o = new TestObject;
11 assert_equals(o.getScriptStateURL(), location.href);
12 }, 'new TestObject');
13
14 promise_test(() => {
15 let iframe = document.createElement('iframe');
16 iframe.src = 'resources/iframe.html';
17 return new Promise(resolve => {
18 iframe.onload = resolve;
19 document.body.appendChild(iframe);
20 }).then(() => {
21 let o = new iframe.contentWindow.TestObject;
22 assert_equals(o.getScriptStateURL(), location.href);
23 });
24 }, 'new iframe.contentWindow.TestObject');
25
26 done();
27 </script>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698