Removing test for exceptions being thrown from MessageEvent.

After DOM discussion I added a test for unsupported conversions, but this doesn't throw on dart2js- will refactor.

TBR
BUG=

Review URL: https://codereview.chromium.org//21385004

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25681 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
blois@google.com
2013-07-31 20:09:39 +00:00
parent e6f7ec6261
commit 6ffa627fd7
@@ -49,8 +49,4 @@ main() {
canvas.height = 100;
var imageData = canvas.context2D.getImageData(0, 0, 1, 1);
serializationTest('imagedata', [imageData]);
expect(() {
new MessageEvent('', data: new DivElement(), origin: '', lastEventId: '');
}, throws);
}