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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/content-security-policy/frame-ancestors/nested-traversing-allowed.sub.html

Issue 2695813009: Import wpt@503f5b5f78ec4e87d144f78609f363f0ed0ea8db (Closed)
Patch Set: Skip some tests 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>single-frame-self-allowed</title>
5 <script src="/resources/testharness.js"></script>
6 <script src="/resources/testharnessreport.js"></script>
7 <script src="../support/logTest.sub.js?logs=[]"></script>
8 <script src='../support/alertAssert.sub.js?alerts=["hello deep frame"]'></sc ript>
9 <!-- enforcing policy:
10 connect-src 'self' 'none'; script-src 'self' 'unsafe-inline'; frame-src 'self';
11 -->
12 <script>
13 function onMessage(event) {
14 if(event.data == "start test") {
15 startTest();
16 } else {
17 alert_assert(event.data);
18 }
19 }
20 window.addEventListener(
21 "message",
22 onMessage,
23 false);
24 function startTest() {
25 window.frames['frame1'].frames['deepframe'].postMessage("hello deep frame", "*");
26 }
27 </script>
28 </head>
29 <body>
30 <iframe src='http://{{host}}:{{ports[http][0]}}/content-security-policy/fram e-ancestors/intermediate-reporting-frame-allows-self.sub.html?subframe=http://{{ host}}:{{ports[http][0]}}/content-security-policy/frame-ancestors/reporting-fram e-allows-self.html' name="frame1"></iframe>
31 <div id="log"></div>
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698