Files
webcomponentsjs/tests/ShadowDOM/html/on-load-test.html
2015-10-23 14:28:57 -07:00

37 lines
1.1 KiB
HTML

<!doctype html>
<!--
@license
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<script>
WCT = {
waitFor: function(cb) {
cb();
}
};
</script>
<script src="../../../src/ShadowDOM/ShadowDOM.js"></script>
<script src="../../../../web-component-tester/browser.js"></script>
<script>
var wrap = ShadowDOMPolyfill.wrap;
test('load event listener works', function(done) {
window.addEventListener('load', function(e) {
assert.equal(e.target, wrap(document))
assert.equal(e.currentTarget, wrap(window));
assert.equal(this, wrap(window));
assert.equal(e.eventPhase, Event.AT_TARGET);
done();
});
});
</script>