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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/webmessaging/broadcastchannel/sandbox.html

Issue 2558423002: Import wpt/webmessaging tests (Closed)
Patch Set: rebase again Created 3 years, 11 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <meta charset=utf-8>
3 <title>Creating BroadcastChannel in an opaque origin</title>
4 <script src="/resources/testharness.js"></script>
5 <script src="/resources/testharnessreport.js"></script>
6 <body>
7 <script>
8 async_test(t => {
9 self.onmessage = t.step_func(e => {
10 assert_equals(e.data, 'Created');
11 t.done();
12 });
13 });
14 </script>
15 <iframe sandbox="allow-scripts" src="resources/sandboxed.html"></iframe>
16 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698