From bba701409a9fc8bade4a77f5fa84d24fe3e1c8e9 Mon Sep 17 00:00:00 2001 From: Jungkee Song Date: Mon, 20 May 2013 23:53:00 +0900 Subject: [PATCH] progress-events: change the file constructor.html to that of the approved file. --- progress-events/constructor.html | 6 ------ 1 file changed, 6 deletions(-) diff --git a/progress-events/constructor.html b/progress-events/constructor.html index 4978bd2dce8025..a99013a281c70a 100644 --- a/progress-events/constructor.html +++ b/progress-events/constructor.html @@ -13,7 +13,6 @@ assert_equals(ev.bubbles, false) assert_equals(ev.cancelable, false) assert_equals(ev.defaultPrevented, false) - assert_equals(ev.isTrusted, false) assert_true(ev.timeStamp > 0) assert_true("initEvent" in ev) assert_equals(ev.lengthComputable, false) @@ -41,9 +40,4 @@ assert_equals(ev.type, "Xx") assert_equals(ev.lengthComputable, false) }, "ProgressEventInit members must be matched case-sensitively.") -test(function() { - assert_throws("NotSupportedError", function() { - document.createEvent("ProgressEvent") - }) -}, "document.createEvent() should not work with ProgressEvent.")