Auto merge of #13475 - servo:disable-eventsource, r=Manishearth

Disable EventSource until it is fully implemented.

This also causes a number of tests that currently time out to fail quickly.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13475)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-09-28 14:50:44 -05:00 committed by GitHub
commit 0ee35a3b34
56 changed files with 254 additions and 112 deletions

View file

@ -7,7 +7,8 @@
*/
[Constructor(DOMString url, optional EventSourceInit eventSourceInitDict),
Exposed=(Window,Worker)]
Exposed=(Window,Worker),
Pref="dom.eventsource.enabled"]
interface EventSource : EventTarget {
readonly attribute DOMString url;
readonly attribute boolean withCredentials;