Index: third_party/WebKit/LayoutTests/external/wpt/content-security-policy/frame-ancestors/reporting-frame-allows-self.html |
diff --git a/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/frame-ancestors/reporting-frame-allows-self.html b/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/frame-ancestors/reporting-frame-allows-self.html |
deleted file mode 100644 |
index 7c1186e77a42e843f9f7ba753e638efbe182ca76..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/frame-ancestors/reporting-frame-allows-self.html |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<body> |
- <p>Reporting Frame...</p> |
- <script> |
- function onMessage(event) { |
- var p = document.createElement(p); |
- p.textContent = event.data; |
- document.body.appendChild(p); |
- window.parent.postMessage(event.data, "*"); |
- } |
- |
- window.addEventListener( |
- "message", |
- onMessage, |
- false |
- ); |
- |
- window.parent.postMessage("start test", "*"); |
- </script> |
-</body> |
-</html> |