Index: third_party/WebKit/LayoutTests/external/wpt/webmessaging/without-ports/007.html |
diff --git a/third_party/WebKit/LayoutTests/external/wpt/webmessaging/without-ports/007.html b/third_party/WebKit/LayoutTests/external/wpt/webmessaging/without-ports/007.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..eb2b5c52e56f3ed1d3aa20c16e5ec099213efac0 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/external/wpt/webmessaging/without-ports/007.html |
@@ -0,0 +1,14 @@ |
+<!doctype html> |
+<title>targetOrigin '*'</title> |
+<script src="/resources/testharness.js"></script> |
+<script src="/resources/testharnessreport.js"></script> |
+<div id="log"></div> |
+<script> |
+async_test(function() { |
+ postMessage('', '*'); |
+ onmessage = this.step_func(function(e) { |
+ assert_equals(e.data, ''); |
+ this.done(); |
+ }); |
+}); |
+</script> |