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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/wasm/resources/remote_frame.html

Issue 2847063002: [wasm] Ensure postMessage doesn't work cross process. (Closed)
Patch Set: Renames/fixes Created 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/wasm/wasm_remote_postMessage_test.https.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script>
3 function listener(event) {
4 var ret = event.data;
5 if (!ret) ret = "didn't make it"
6 event.source.postMessage(ret, event.origin);
7 }
8
9 addEventListener("message", listener, false);
10
11 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/wasm/wasm_remote_postMessage_test.https.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698