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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/security/xssAuditor/meta-tag-http-refresh-x-frame-options.html

Issue 1889433003: Ignore 'X-Frame-Options' inside '<meta>' tags. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more. 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 <head>
4 <script>
5 if (window.testRunner) {
6 testRunner.dumpAsText();
7 testRunner.setXSSAuditorEnabled(true);
8 testRunner.waitUntilDone();
9 }
10
11 function done()
12 {
13 if (window.testRunner)
14 testRunner.notifyDone();
15 }
16 </script>
17 </head>
18 <body>
19 <iframe onload="done()" src="http://localhost:8000/security/xssAuditor/resources /echo-head.pl?q=%3Cmeta+http-equiv%3D%22x-frame-options%22+content%3D%22deny%22% 3E">
20 </iframe>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698