Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/external/wpt/FileAPI/support/url-origin.html |
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/FileAPI/support/url-origin.html b/third_party/WebKit/LayoutTests/external/wpt/FileAPI/support/url-origin.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..63755113915f9f59eec9d292fc04422e7d219f90 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/external/wpt/FileAPI/support/url-origin.html |
| @@ -0,0 +1,6 @@ |
| +<!DOCTYPE html> |
| +<script> |
| +const blob = new Blob(["Test Blob"]); |
| +const url = URL.createObjectURL(blob); |
| +window.parent.postMessage({url: url}, '*'); |
| +</script> |