Index: third_party/WebKit/LayoutTests/fast/plugins/plugin-without-layout-csp-error-crash.html |
diff --git a/third_party/WebKit/LayoutTests/fast/plugins/plugin-without-layout-csp-error-crash.html b/third_party/WebKit/LayoutTests/fast/plugins/plugin-without-layout-csp-error-crash.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ae668c45a088e0e3019db21358ca0482ef824384 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/plugins/plugin-without-layout-csp-error-crash.html |
@@ -0,0 +1,9 @@ |
+<!DOCTYPE html> |
+<meta content="default-src 'none'; script-src 'unsafe-inline'" http-equiv="Content-Security-Policy"/> |
+<script> |
+if (window.testRunner) |
+ testRunner.dumpAsText(); |
+var objectElement = document.createElement("object"); |
+objectElement.setAttribute("type", "application/x-webkit-test-webplugin-can-create-without-renderer"); |
+</script> |
+<p>PASS if no crash</p> |