Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion STANDARD-APIS.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ inherit from EventTarget will also be patched.
on properties, such as onclick, onreadystatechange, the following on properties will
be patched as EventTask, the following is the on properties zone.js patched

|||||||||
|||||
|---|---|---|---|
|copy|cut|paste|abort|
|blur|focus|canplay|canplaythrough|
Expand Down
2 changes: 1 addition & 1 deletion test/browser/registerElement.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe(
callbackNames.map(function(callbackName) {
const fullCallbackName = callbackName + 'Callback';
const proto = Object.create(HTMLElement.prototype);
proto[fullCallbackName] = function(arg: any) {
(proto as any)[fullCallbackName] = function(arg: any) {
callbacks[callbackName](arg);
};
return (<any>document).registerElement('x-' + callbackName.toLowerCase(), {
Expand Down