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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/x-frame-options-deny.html

Issue 1617043002: Introduce AncestorThrottle, which will process 'X-Frame-Options' headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@block-response
Patch Set: DCHECK. 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/inspector/network/x-frame-options-deny.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/x-frame-options-deny.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/x-frame-options-deny.html
index 079775a936f4a41a358446769b633bc2e72361f3..163b0d1dce1ef176f81e225174d3d391856de581 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/x-frame-options-deny.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/x-frame-options-deny.html
@@ -36,8 +36,10 @@ function test()
function loadingFailed(requestId, time, localizedDescription, canceled)
{
var request = InspectorTest.networkLog.requestForId(requestId);
- if (/x-frame-options-deny\.cgi/.exec(request.url))
+ if (/x-frame-options-deny\.cgi/.exec(request.url)) {
+ InspectorTest.addResult("TODO(mkwst): This started failing when we moved XFO to the browser.");
InspectorTest.completeTest();
+ }
}
}
</script>

Powered by Google App Engine
This is Rietveld 408576698