mirror of
https://github.com/servo/servo
synced 2026-05-09 16:42:16 +02:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
7 lines
156 B
HTML
7 lines
156 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
const blob = new Blob(["Test Blob"]);
|
|
const url = URL.createObjectURL(blob);
|
|
window.parent.postMessage({url: url}, '*');
|
|
</script>
|