Index: third_party/WebKit/LayoutTests/imported/wpt/dom/events/CustomEvent.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/dom/events/CustomEvent.html b/third_party/WebKit/LayoutTests/imported/wpt/dom/events/CustomEvent.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c55d5924bd5fe3e0fa93b79838bc3bdbfa23022a |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/imported/wpt/dom/events/CustomEvent.html |
@@ -0,0 +1,19 @@ |
+<!doctype html> |
+<title>CustomEvent</title> |
+<script src="/resources/testharness.js"></script> |
+<script src="/resources/testharnessreport.js"></script> |
+<div id="log"></div> |
+<script> |
+test(function() { |
+ var type = "foo"; |
+ |
+ var target = document.createElement("div"); |
+ target.addEventListener(type, this.step_func(function(evt) { |
+ assert_equals(evt.type, type); |
+ }), true); |
+ |
+ var fooEvent = document.createEvent("CustomEvent"); |
+ fooEvent.initEvent(type, true, true); |
+ target.dispatchEvent(fooEvent); |
+}); |
+</script> |