Index: LayoutTests/fast/dom/shadow/event-path-load.html |
diff --git a/LayoutTests/fast/dom/shadow/event-path-load.html b/LayoutTests/fast/dom/shadow/event-path-load.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e2e8c0767249d6a8b2df857e05ac9c68e1c1684f |
--- /dev/null |
+++ b/LayoutTests/fast/dom/shadow/event-path-load.html |
@@ -0,0 +1,20 @@ |
+<!DOCTYPE html> |
+<script src="../../../resources/testharness.js"></script> |
+<script src="../../../resources/testharnessreport.js"></script> |
+<img id="img" src="../../images/resources/test-load.jpg"> |
+<script> |
+setup({ explicit_done: true }); |
+ |
+var img = document.getElementById("img"); |
+img.onload = function (e) { |
+ var path = e.path; |
+ test(function () { |
+ assert_equals(path.length, 4, 'path.length'); |
+ assert_equals(path[0], img, 'path[0] should be img'); |
+ assert_equals(path[1], document.body, 'path[1] should be body'); |
+ assert_equals(path[2], document.documentElement, 'path[2] should be html'); |
+ assert_equals(path[3], document, 'path[3] should be document'); |
+ }, "event.path for img.onload"); |
+ done(); |
+}; |
+</script> |