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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/security/mixedContent/resources/simple-event-stream.pl

Issue 1940593002: Make sure the test finishes after EventSource loading has completed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added Access-Control-Allow-Origin http header to the test event stream. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-eventsource.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/security/mixedContent/resources/simple-event-stream.pl
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/mixedContent/resources/simple-event-stream.pl b/third_party/WebKit/LayoutTests/http/tests/security/mixedContent/resources/simple-event-stream.pl
new file mode 100755
index 0000000000000000000000000000000000000000..c93169168c29876ec7e5b812c3ac288123f71970
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/security/mixedContent/resources/simple-event-stream.pl
@@ -0,0 +1,6 @@
+#!/usr/bin/perl
+print "Content-type: text/event-stream\r\n";
+print "Access-Control-Allow-Origin: *\r\n";
+print "\r\n";
+print "data: hello\r\n";
+print "\r\n";
« no previous file with comments | « third_party/WebKit/LayoutTests/http/tests/security/mixedContent/resources/frame-with-insecure-eventsource.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698