mirror of
https://github.com/servo/servo.git
synced 2025-10-18 01:09:16 +01:00
6 lines
196 B
JavaScript
6 lines
196 B
JavaScript
// META: global=window,worker
|
|
|
|
test(function() {
|
|
const source = new EventSource("");
|
|
assert_equals(source.url, self.location.toString());
|
|
}, "EventSource constructor with an empty url.");
|