Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/dom/events/ProgressEvent.html

Issue 2668783003: Import wpt@767dc2a4f049c761bd146d61de2ea860a895a624 (Closed)
Patch Set: Update test expectations and baselines. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <title>ProgressEvent constructor</title>
3 <script src=/resources/testharness.js></script>
4 <script src=/resources/testharnessreport.js></script>
5 <div id=log></div>
6 <script>
7 test(function() {
8 var ev = new ProgressEvent("test")
9 assert_equals(ev.type, "test")
10 assert_equals(ev.target, null)
11 assert_equals(ev.currentTarget, null)
12 assert_equals(ev.eventPhase, Event.NONE)
13 assert_equals(ev.bubbles, false)
14 assert_equals(ev.cancelable, false)
15 assert_equals(ev.defaultPrevented, false)
16 assert_equals(ev.isTrusted, false)
17 assert_true(ev.timeStamp > 0)
18 assert_true("initEvent" in ev)
19 }, "Default event values.")
20 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698