blob: 990d3663d83b6c3cd4c6711b5651081574437248 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<img id="img" src="../../images/resources/test-load.jpg">
<script>
// Basic functionality test for Event.path.
img.onload = function(e) {
test(function() {
assert_array_equals(e.composedPath(), e.path);
}, "Event.composedPath() should be the same as Event.path.");
};
</script>